Files
lodash/README.md
John-David Dalton 81e41ca0c8 Bump to v3.9.0.
2015-12-16 17:50:42 -08:00

31 lines
674 B
Markdown

# lodash v3.9.0
The [modern build](https://github.com/lodash/lodash/wiki/Build-Differences) of [lodash](https://lodash.com/) exported as [AMD](https://github.com/amdjs/amdjs-api/wiki/AMD) modules.
Generated using [lodash-cli](https://www.npmjs.com/package/lodash-cli):
```bash
$ lodash modularize modern exports=amd -o ./
$ lodash modern exports=amd -d -o ./main.js
```
## Installation
Using bower or volo:
```bash
$ bower i lodash#3.9.0-amd
$ volo add lodash/3.9.0-amd
```
Defining a build as `'lodash'`.
```js
require({
'packages': [
{ 'name': 'lodash', 'location': 'path/to/lodash' }
]
}, ['lodash/array/chunk'], function(chunk) {
// use `chunk`
});
```