Lo-Dash v2.1.0
A utility library delivering consistency, customization, performance, & extras.
Download
-
Modern builds perfect for newer browsers/environments:
Development & Production -
Compatibility builds for older environment support too:
Development & Production -
Underscore builds to use as a drop-in replacement:
Development & Production
CDN copies are available on cdnjs & jsDelivr.
For smaller file sizes, create custom builds with only the features needed.
Love modules? We’ve got you covered with lodash-amd, lodash-node, and npm packages per method.
Dive in
There’s plenty of documentation, unit tests, & benchmarks.
For a list of upcoming features, check out our roadmap.
The full changelog for this release is available on our wiki.
Features not in Underscore
- AMD loader support (curl, dojo, requirejs, etc.)
- _(…) supports intuitive chaining
- _.at for cherry-picking collection values
- _.bindKey for binding “lazy” defined methods
- _.cloneDeep for deep cloning arrays & objects
- _.contains accepts a
fromIndex
- _.createCallback for extending callbacks in methods & mixins
- _.curry for creating curried functions
- .debounce & .throttle accept
options
for more control - .findIndex & .findKey for finding indexes & keys
- _.forEach is chainable & supports exiting early
- _.forIn for iterating own & inherited properties
- _.forOwn for iterating own properties
- _.isPlainObject for checking if values are created by
Object
- _.memoize exposes the
cache
of memoized functions - .merge for a deep .extend
- _.parseInt for consistent behavior
- _.partialRight for partial application from the right
- .pull & .remove for mutating arrays
- _.random supports returning floating-point numbers
- _.runInContext for easier mocking
- _.support for flagging environment features
- _.template supports “imports” options & ES6 template delimiters
- .transform as a powerful alternative to .reduce for transforming objects
- _.where supports deep object comparisons
- _.zip is capable of unzipping values
- .omit, .pick, & more accept callbacks
- .contains, .toArray, & more accept strings
- .filter, .map, & more support “_.pluck” & “_.where” shorthands
- .findLast, .findLastIndex, & more right-associative methods
Resources
- Posts
- Videos
Support
Tested in Chrome 5~29, Firefox 2~24, IE 6-10, Opera 9.25~16, Safari 3-6, Node.js 0.6.8-0.10.18, Narwhal 0.3.2, PhantomJS 1.9.2, RingoJS 0.9, & Rhino 1.7RC5.
Installation & usage
In browsers:
Using npm
:
npm i --save lodash {sudo} npm i -g lodashnpm ln lodash
var _ = ;// or as Underscorevar _ = ;
Notes:
- Don’t assign values to special variable
_
when in the REPL - If Lo-Dash is installed globally, run
npm link lodash
in your project’s root directory before requiring it - Node.js 0.10.8-0.10.11 have bugs preventing minified builds
In Rhino:
;
In an AMD loader:
;
Author
John-David Dalton |
Contributors
Blaine Bublitz | Kit Cambridge | Mathias Bynens |