es-toolkit
es-toolkit copied to clipboard
A modern JavaScript utility library that's 2-3 times faster and up to 97% smaller—a major upgrade to lodash.
Add `reverse` function   Feat: #806
#807
Hi! I really like this library, but I can't find out which browsers it supports and which it doesn't. My guess is that support for older browsers is not a...
I’ve added the `toFormData` function to the library. The initial idea was inspired by the [object-to-formdata](https://github.com/therealparmesh/object-to-formdata) project. I’ve expanded on that project by adding support for additional JavaScript data types...
Hey there, pesky feature request incoming! 😅 It would be great to have a utility to hash objects Cheers CHE1RON
Hi @raon0211 :) If necessary, I plan to implement `split` method for issue #91.
Python calls it [`itertools.chain`](https://docs.python.org/3/library/itertools.html#itertools.chain): ```js chain("ABC", [1, 2, 3]).toArray() === ["A", "B", "C", 1, 2, 3] ``` Like `Array.concat`, but lazy, and doesn't need its iterables to be marked with...
I was inspired by #593 to develop a similar webpack 5 plugin for replacing lodash with es-toolkit!😍😍 https://github.com/D-Sketon/es-toolkit-webpack-plugin ## Usage ```bash npm install es-toolkit npm install es-toolkit-webpack-plugin --save-dev ``` ```javascript...
Hi, @raon0211 ! Can I work **findKey** of https://github.com/toss/es-toolkit/issues/91 ?? https://github.com/toss/es-toolkit/issues/441 In the above issue, someone said they were implementing it, but it seems like it hasn't been implemented because...