seungrodotlee
seungrodotlee
Hello, @raon0211! Let me implement this! :)
@bitttttten Thank you for information! I guess it should be implemented since [`es-toolkit/compat` is designed to provide an identical API to `lodash`](https://es-toolkit.slash.page/compatibility.html#:~:text=This%20module%20is%20designed%20to%20provide%20an%20identical%20API%20to%20lodash)
I'm wondering if someone is currently working on the `merge` and `toMerged` functions. If there is no ongoing work, I would like to implement them.
While I am trying to work as quickly as possible, but it is not a very high priority, so I am falling behind. I hope to be able to work...
The syntax for the pipe function is planned as follows. ```typescript function toString(value: unknown) { return `string:${value}`; } function toStringAsync(value: unknown) { return Promise.resolve(`string:${value}`); } function length(value: string) { return...
 bench result of `pipe`
Maybe we don't need to copy original implementation even if there is a script for copying it... I agree with that idea. But it would be better to keep current...
## functions list in `fp` ### array - at - chunk - countBy - difference - differenceBy - differenceWith - drop - dropRight - dropRightWhile - dropWhile - every -...
> Are there already plans to review/merge this PR? Thanks Sorry for late reply. We're doing some discussions about details and there will be some changes in implementations!
@evan-moon THANK YOU FOR GOOD SUGGESTION! Indeed, the `curry` method provided by existing libraries like `Lodash` has a different form compared to the 'strict type of currying'. However, I believe...