Skip to content

Latest commit

 

History

History
161 lines (91 loc) · 4.54 KB

archivedLog.md

File metadata and controls

161 lines (91 loc) · 4.54 KB

Archived Change Log

23rd November 2023

  • New function added to the data-comparison module: referencedClone.

11th November 2023

  • New function added to ancillaries module: dateBasedRandom.

24th October 2023

  • New functions added to the tools module: escapeRegExp, isRegExpPattern and regExpString.

6th October 2023

  • Replaced the regExpFromString function of the tools module for an improved regExpTemplate function.
  • Added the flattenObject function to the dataComparison module.

11th August 2023

  • Added the permute and unflatten functions to the Array section.

10th June 2023

  • Added the debounce and throttle functions to the DOM section.

7th May 2023

  • Added the regExpFromString, parseJson, stringifyJson and generateEnums functions to the tools section.

5th May 2023

  • Added DOM functions inspired from the work of Dave Gray.
    • Arrays
      • shuffleArray - Shuffle an array of numbers
    • DOM
      • acc - add CSS class
      • dce - delete child elements
      • sui - sanitive untrusted/user input
    • Data Comparison
      • isBase - confirms if the given datum has a value of null or undefined.
      • isObject - confirms if the given datum is an Object.
  • Tools
    • SIMD - refined.

29th April 2023

  • Range methods rangeGenerator added.

2nd April 2023

  • Array methods batchBy.size and batchBy.number added.

1st April 2023

  • simd added to tools.
  • extractProperty removed from dataComparison (duplicate of tools/lens).

17th March 2023

  • DOM manipulation functions added.
  • Clipboard functions copy and paste added.
  • Exercise function consoleGroup added.

7th March 2023

  • Added isEmptyObject function to Data Comparison group.
  • Added Ancillary functions random and webStore.

1st March 2023

  • Added the mapGetter function to the Ancillaries group.

4th January 2023

  • Added the adhocArray function to the Exercising group.

Update 11th December 2022

  • Added the absentee sum function.

Update 1st October 2022

  • Enhance the enumerate function to support capitalisation of snake and sentence|title case keys.

Update 29th August 2022

  • Added Array groupBy function.

Update 20th August 2022

  • Added enumerate to generate an object to support Enumeration in JS.
  • Removed caseConverter as it is of very little utility.

Update 22nd April 2022

  • Added compose to combine a list of monadic (single parameter) functions into a single new function.

Update 24th January 2022

  • Added duplicateObject to create an in-depth copy of an object including properties of data types not supported by JSON.

Update 13th October 2021

  • Added extractProperty to extract objects/values from a containing object given a path of property names.
  • Refinement of the compareObjectByProperty method.

Update: 21st September 2021

  • Added compareObjectByProperty to generate an object comparator function based on a given property name.

Update: 22nd August 2021

  • Added cloneObject to enable deep duplication of objects including data types not supported by JSON.

Update: 19th August 2021

  • Added transposeArray to pivot the rows with columns of a 2D array.

Update: 11th August 2021

  • Added reconcileArray to update an array based on a second without losing reference.

Update: 7th July 2021

  • Added memoise and curry functions.

Update: 5th June 2021

  • Added sleep function.

Update: 17th April 2021

  • Revised unionArrays function.

Update: 3rd April 2021

  • Applied patch to address the report by Snyk of a vulnerability in the y18n package version 4.0.0.

Update: 5th March 2021

  • New function replaceArray added to replace the content of an array in place, without reassignment.

Update: 29th December 2020

  • New function dataType added to report the type of data held in a variable as a string.

Update: 5th September 2020

  • This library was originally developed as an ES Module but had to be converted to Common.JS to make it compatible and testable with Jest. Following the advice given in Valentino Gagliardi's article, I have been able to to convert it back to an ES Module; making it usable by Node and in the web browser.