_.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 中安裝 n_ 以使用 Lodash。
Lodash 讓 JavaScript 變得更簡單,讓您無需費力即可處理陣列、數字、物件、字串等。 Lodash 的模組化方法非常適合:
Lodash 提供 各種建置和模組格式。
在 Chrome 74-75、Firefox 66-67、IE 11、Edge 18、Safari 11-12 和 Node.js 8-12 中測試過。