We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using e.g.
import isEqual from 'lodash/isEqual'; if (!isEqual(obj1, obj2)) return;
instead of
import * as _ from 'lodash'; if (!_.isEqual(obj1, obj2)) return;
can save app bundle size. e.g. if using JSPM package manager with Rollup Optimization.
The text was updated successfully, but these errors were encountered:
Duplicate of #830, see this comment: #830 (comment)
We have this done automatically by babel using https://github.com/lodash/babel-plugin-lodash. Compare the src and dist directories to see it in action.
Sorry, something went wrong.
@jcarbo, that's great, thanks for clarification.
No branches or pull requests
Using e.g.
instead of
can save app bundle size.
e.g. if using JSPM package manager with Rollup Optimization.
The text was updated successfully, but these errors were encountered: