0.5.0 • Published 7 years ago

simple-fp v0.5.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

Build Status

simple-fp

A simple, small, no dependency functional programming library.

Installation

Using yarn:

yarn add simple-fp --save

using npm:

npm i simple-fp --save

Usage

var fp = require('simple-fp');

fp([1, 1, 2, 3])
  .unique()
  .forEach(function(num) {
    console.log(num);
  });
// 1, 2, 3
0.5.0

7 years ago

0.4.0

7 years ago

0.3.0

7 years ago

0.2.0

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.1

7 years ago