← Back to context Comment by epicureanideal 3 months ago _.any, some, every, keyBy. 3 comments epicureanideal Reply skrebbel 3 months ago _.any doesn’t seem to exist.Some and every are also in JS (with the same names even!).keyBy is just Array.map -> Object.fromEntries dsego 3 months ago It was more useful before when browsers didn't support array.map and fromEntries. That's the origin of all these libraries, but browsers caught up. Things like keyBy, groupBy, debounce, uniqueId, and some others, are still useful.
skrebbel 3 months ago _.any doesn’t seem to exist.Some and every are also in JS (with the same names even!).keyBy is just Array.map -> Object.fromEntries dsego 3 months ago It was more useful before when browsers didn't support array.map and fromEntries. That's the origin of all these libraries, but browsers caught up. Things like keyBy, groupBy, debounce, uniqueId, and some others, are still useful.
dsego 3 months ago It was more useful before when browsers didn't support array.map and fromEntries. That's the origin of all these libraries, but browsers caught up. Things like keyBy, groupBy, debounce, uniqueId, and some others, are still useful.
_.any doesn’t seem to exist.
Some and every are also in JS (with the same names even!).
keyBy is just Array.map -> Object.fromEntries
It was more useful before when browsers didn't support array.map and fromEntries. That's the origin of all these libraries, but browsers caught up. Things like keyBy, groupBy, debounce, uniqueId, and some others, are still useful.