Lodash

一個現代的 JavaScript 函式庫,提供模組化、效能和額外功能。

_.defaults({ 'a'1 }, { 'a'3, 'b'2 });
// → { 'a': 1, 'b': 2 }
_.partition([1, 2, 3, 4], n => n % 2);
// → [[1, 3], [2, 4]]

下載

Lodash 採用 MIT 授權 發布,並支援現代環境。 檢閱 組建差異,選擇適合您的組建。

安裝

在瀏覽器中

<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?

Lodash 讓 JavaScript 變得更簡單,讓您無需費力即可處理陣列、數字、物件、字串等。 Lodash 的模組化方法非常適合:

模組格式

Lodash 提供 各種建置和模組格式。

補充工具

延伸閱讀

支援

在 Chrome 74-75、Firefox 66-67、IE 11、Edge 18、Safari 11-12 和 Node.js 8-12 中測試過。