simple-fp

0.5.0 • Public • Published

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

Package Sidebar

Install

npm i simple-fp

Weekly Downloads

0

Version

0.5.0

License

MIT

Last publish

Collaborators

  • blaketarter