使用
JavaScript
_.defaults({ 'a': 1 }, { 'a': 3, 'b': 2 });
// → { 'a': 1, 'b': 2 }
_.partition([1, 2, 3, 4], n => n % 2);
// → [[1, 3], [2, 4]]
下载
查看构建差异并选择适合您的一个。
安装
在浏览器中:
html
<script src="lodash.js"></script>
使用 npm:
Shell
$ npm i -g npm
$ npm i --save lodash
在 Node.js 中:
JavaScript
// 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');
TIP
安装 n_ 以在 Node.js < 6 REPL 中使用 Lodash。