Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lodash-archive/lodash-fp
Lodash with more functional fun.
https://github.com/lodash-archive/lodash-fp
Last synced: 4 months ago
JSON representation
Lodash with more functional fun.
- Host: GitHub
- URL: https://github.com/lodash-archive/lodash-fp
- Owner: lodash-archive
- License: other
- Archived: true
- Created: 2015-01-11T08:41:17.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-06T01:30:38.000Z (almost 9 years ago)
- Last Synced: 2024-05-23T10:21:17.949Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 462 KB
- Stars: 560
- Watchers: 26
- Forks: 14
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```
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.