介绍
Lodash 是一个一致性、模块化、高性能的 JavaScript 实用工具库。Lodash 通过降低 array
、 number
、 objects
、 string
等等的使用难度从而让js变得更简单。 Lodash 的模块化方法 非常适用于:
- 遍历 array、object 和 string
- 对值进行操作和检测
- 创建符合功能的函数
安装
通过npm安装:
npm i --save lodash
引用
// 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.varfp=require('lodash/fp'); // Load method categories.vararray=require('lodash/array'); varobject=require('lodash/fp/object'); // Cherry-pick methods for smaller browserify/rollup/webpack bundles.varat=require('lodash/at'); varcurryN=require('lodash/fp/curryN');