Files
lodash/README.md
John-David Dalton 63d9a3fc42 Bump to v4.11.0.
2016-04-13 10:19:22 -07:00

648 B

lodash-amd v4.11.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.