lodash-fp
Version:
Lodash with more functional fun.
33 lines (21 loc) • 602 B
Markdown
# lodash-fp v0.10.4
The [lodash](https://lodash.com/) library with auto-curried iteratee-first data-last methods.
## Discontinued
This package has been discontinued in favor of [lodash/fp](https://github.com/lodash/lodash/wiki/FP-Guide).
## Installation
In browsers:
```html
<script src="dist/lodash-fp.js"></script>
```
Using npm:
```bash
$ {sudo -H} npm i -g npm
$ npm i --save lodash-fp
```
In Node.js:
```js
var _ = require('lodash-fp');
_.map(parseInt)(['6', '08', '10']);
// => [6, 8, 10]
```
See the [package source](https://github.com/lodash/lodash-fp/tree/0.10.4) for more details.