Hacker News new | ask | show | jobs
by frostik 3639 days ago
Yes, but means that you need to implement map, foreach, filter yourself. So you might be better off with lodash.
1 comments

I think he's referring to `Object.keys(object).reduce`. We polyfill `Object.entries` so we do `Object.entries(object).reduce((result, [key, value]) => ...)`