DEV Community

Discussion on: How to uncurry this

Collapse
 
iamaamir profile image
mak

Thats great from the learning perspective but in real world i would hesitate to use this mainly because of readability and for the sake of simplicity

e.g we can have simple utilities

const uppercase = str => str.toUpperCase()
const lowercase = str => str.toLowerCase();
Enter fullscreen mode Exit fullscreen mode