_.defaults({ 'a': 1 }, { 'a': 3, 'b': 2 });// → { 'a': 1, 'b': 2 }_.partition([1, 2, 3, 4], n => n % 2);// → [[1, 3], [2, 4]]
在浏览器中
<script src="lodash.js"></script>
使用 npm
$ npm i -g npm$ npm i --save lodash
在 Node.js 中
// Load the full build.var _ = require('lodash');// Load the core build.var _ = require('lodash/core');// Load the FP build for immutable auto-curried iteratee-first data-last methods.var fp = require('lodash/fp'); // Load method categories.var array = require('lodash/array');var object = require('lodash/fp/object'); // Cherry-pick methods for smaller browserify/rollup/webpack bundles.var at = require('lodash/at');var curryN = require('lodash/fp/curryN');
注意
在 Node.js < 6 REPL 中使用 Lodash,请安装 n_。
Lodash 通过消除处理数组、数字、对象、字符串等的麻烦,让 JavaScript 更易于使用。 Lodash 的模块化方法非常适合:
Lodash 提供了 多种构建版本 和模块格式。
在 Chrome 74-75、Firefox 66-67、IE 11、Edge 18、Safari 11-12 和 Node.js 8-12 中测试。