1.21.0 (2022-01-19)
- push new version: new version (da64205)
1.20.2 (2021-12-08)
- string/capitalise: performance (4fd3a59)
1.20.1 (2021-12-07)
- string/countWords: punctation chars (62e1460)
1.20.0 (2021-12-06)
- string/countWords: BREAKING CHANGE for versioning but only because of introducing strings (2598907)
1.19.0 (2021-12-02)
- array/rangeArray: create a range array (b2ed9e9)
1.18.1 (2021-12-01)
- array/sortDesc: performance (1173fd2)
1.18.0 (2021-11-24)
1.17.0 (2021-11-23)
- array/average: performance (74776c7)
1.16.0 (2021-11-22)
- array/average new features (e9f4d76)
- array/sortAsc ew features (e9f4d76)
- array/sortDesc new features (e9f4d76)
- array/sum, array/average: calculations (a2cd22f)
1.15.0 (2021-11-17)
1.14.2 (2021-11-15)
- Array/mergeArray: performance improvements (88b5356)
1.14.1 (2021-11-11)
- Array/evenItem, Array/oddItem: performance improvements (cc30384)
1.14.0 (2021-11-10)
- Array/evenItem: performance improvements (5953fd3)
- Array/evenItem: Returns an array which contains every even item of the original array. (85bb14b)
1.13.0 (2021-11-09)
- Array/oddItem: fix spec (70df948)
- Array/oddItem: Returns an array which contains every odd (second) item of the original array. (2ec177d)
1.12.0 (2021-11-08)
- array/longest-string-length: Returns the length of the longest string entry of an Array of strings. (b0a1973)
1.11.0 (2021-11-05)
- Array/ShortestStringLength: performance (af954f7)
- Array/shortestStringLength: Returns the length of the shortest string entry of an Array of strings. (2a41658)
1.10.3 (2021-11-02)
- Array/lontestString: fix function, fix test (4874047)
1.10.2 (2021-11-02)
- Array/splitInHalf: performance (f46bee1)
1.10.1 (2021-11-01)
1.10.0 (2021-11-01)
- Array/splitInHalf: split an Array in half (79c5a70)
1.9.0 (2021-10-31)
- Array/indexOfLowestNumber: performance optimization. (fd42777)
- Array/indexOfLowestNumber: performance optimization. (4b3765b)
- Array/indexOfHighestNumber: Returns the index of the highest numerical item of the array. (9bb569b)
1.8.0 (2021-10-30)
- Array/indexOfLowestNumber: Returns the index of the lowest numerical item of the array. (9b4ce66)
1.7.0 (2021-10-30)
- Array/closestNumber: Returns the numerical item closest to the given number. (ae8a6aa)
1.6.1 (2021-10-29)
- documentation: modified install command (a2f7346)
1.6.0 (2021-10-29)
- Array/highestNumber: Returns the highest coerced numerical numerical item of the array.r (f5f9ffb)
- Array/lowestNumber: Returns the lowest coerced numerical numerical item of the array.
- Array/removeDuplicates: Returns a copy of the array. Removes duplicate entries.
- Array/isEmpty: Returns a boolean false if the array is not empty or a boolean true if the array is empty.
- Array/shallowClone: Creates a shallow-copied clone of the provided array.
- Array/occurrenceMap: Returns an object where the keys are the array entries and the values the number of their occurrences.