Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.