Just after some tips or advice on removing Lodash from a big project and replacing it with ES6. After a bit of playing around it doesn't seem to be a simple task at all, even straight replacement of functions like filter, find, map etc. Not only does the lodash version of those accommodate all sorts of call methods it even accepts collections that are both arrays or objects. Calling a 'forEach' alone can crash the application if the collection is an object instead of an array. Just wondering if anyone has been able to replace lodash in a large project and any tips you can offer.