Using webpack, I\'m trying to import isEqual since lodash seems to be importing everything. I\'ve tried doing the following with no success:
imp
If you just want to include isEqual and not the rest of the lodash functions (useful for keeping your bundle size small), you can do this in ES6;
import isEqual from 'lodash/isEqual'
This is pretty much the same as what's described in the lodash README, except that there they use require() syntax.
var at = require('lodash/at');