Import only what you need from lodash
Opened this issue · 0 comments
mxdubois commented
Hey, it looks like your built file contains all of lodash@4.6.1
whereas it should really only contain the functions that you use.
You can fix this pretty easily by require
ing the function files directly instead of require
ing the toplevel lodash object, e.g. var some = require('lodash/some')
.
That aside, this looks like a handy library. Thanks for publishing it!