fn-curry

0.0.1 • Public • Published

fn-curry

A simple function to curry a function with an arbitrary number of arguments

install

npm install fn-curry

usage

var curry = require('fn-curry'),
    add =curry(function(a,b){
        return a + b;
    });

add(5); //=> [Function]

var add1 = add(1);
add1(5); //=> 6

license

MIT

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i fn-curry

    Weekly Downloads

    6

    Version

    0.0.1

    License

    MIT

    Last publish

    Collaborators

    • wilhelmson