Hacker News new | ask | show | jobs
by TheAceOfHearts 3741 days ago
I'd be amazed if lodash were unpublished.

Using a library like lodash makes a lot more sense once you use a module bundler that allows tree shaking (like Rollup or Webpack 2.0) along with the ES6 module syntax. Heck, even if you're just using babel with Browserify or Webpack 1.x, you can use babel-plugin-lodash [0] so it'll update your imports and you only pull in what you need.

[0] https://github.com/lodash/babel-plugin-lodash