Replies: 1 comment 2 replies
-
Hi @smolak , thanks for reaching out! That said, I'm open for new ideas and I'm turning the issue into a discussion so we can discuss it and could possibly change that on a future v3 if people agree with it. Btw, do you know any 3rd party libs that would curry preserving the type inference? I never tried to do so, would love to see the results. |
Beta Was this translation helpful? Give feedback.
-
Hi!
Great lib. Just one observation/suggestion: looking at, e.g.
join
function, why have you decided on going with this order of arguments? Asking as you could use 3rd party libs and curry the function with partially applied arguments but it is difficult (impossible?) now, as the argument you apply the thing on comes as first one. E.g. if I wanted to havesnake
utility (joining with_
), it would be easier to use join like so:join('_', theDataToApplyThisOn)
.WDYT?
Beta Was this translation helpful? Give feedback.
All reactions