ChangeLog
4. V2
under development
6. v1.0.4
Add the following methods
- throttle
- debounce
7. Feat: add throttle and debounce method
fix #58 #59
9. cli - v1.0.4
Fix some issues in cli
- version number printiong twice while doing project init. #80
11. fix: fix bug 79 - printing of version twice after ...
Issue fixed by removing line 167 from init.ts
Fixed Bug screenshot:
12. Sync
fix: #76
14. v1.0.3
Added new functional method:
- count : returns the result of a function and the number of times that function is invoked. By @ebe25
15. chore: sanitize count
Edits:
- typos
- missing types in fn args
missed while reviewing pr #63
16. feat: added count function
Added the count method , and this seems to be working on the www client. @jrTilak please review, had some issues with husky, had to skip the hooks but tested them manually.
22. v1.0.2
More methods
Funtional
callAfter : Returns a new function that can be called only after calling a specific number of times.
callBefore : Returns a new function that can be called only for specific number of times.
nTimes : Calls a function n times and returns an array of the results.
once : Returns a new function that can be called only once.
Objects
omit : Returns a new object with the specified keys omitted.
pick : Picks the specified keys from an object.
renameKey : Renames a key in an object.
sampleObj : Returns a sample object with the specified keys and values as random numbers.
25. Feat/obj methods
More Object mEthods
29. `v1.0.1`
Some more array methods:
partition : Partitions an array into two arrays based on a given callback ie predicate.
remove : Removes elements from an array at a specified index.
rotate : Rotates the elements of an array by a given number of positions.
zip : Zips arrays together in the form of an array of arrays.