DEV Community

Discussion on: What is Lodash/fp, even?

Collapse
 
ifarmgolems profile image
Patrik Jajcay • Edited

I did not assume imports to be present. I guess the methods could also be destructured from _ like

const {cond, inRange, ...} = _;
...
Enter fullscreen mode Exit fullscreen mode

And using them without _. prefix.