bloody-curry

1.0.1 • Public • Published

curry

Build Status

install

$ npm install bloody-curry

require

var curry = require("curry")

simple currying script

function add(a,b,c,d){
  return a + b + c + d
}
 
var addToOne = curry(add)(1)
addToOne(1,2,3) // -> 7
addToOne(1)(2)(3) // -> 7

api

curry(func[, length])

Returns a curried function that keeps returning a function until the sum of the passed arguments's length reaches length (if defined) or fn.length.

license

Dependencies (0)

    Dev Dependencies (11)

    Package Sidebar

    Install

    npm i bloody-curry

    Weekly Downloads

    12

    Version

    1.0.1

    License

    MIT

    Last publish

    Collaborators

    • bloodyowl