Skip to content
/ lodash Public

A modern JavaScript utility library delivering modularity, performance, & extras.

License

Notifications You must be signed in to change notification settings

lodash/lodash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lodash-amd v4.0.0

The lodash library exported as AMD modules.

Generated using lodash-cli:

$ lodash exports=amd -o ./
$ lodash exports=amd -d -o ./main.js

Installation

Using npm:

$ {sudo -H} npm i -g npm
$ npm i --save lodash-amd

Using an AMD loader:

require({
  'packages': [
    { 'name': 'lodash', 'location': 'path/to/lodash' }
  ]
}, ['lodash/chunk'], function(chunk) {
  // use `chunk`
});

See the package source for more details.