curri

Minimal curry implementation

  • curri

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
curri
2.0.38 months ago6 years agoMinified + gzip package size for curri in KB

Readme

curri
curri.js
curri in some Italian :it: dialects means run

!Build Statusci-imageci-url !NPM versionnpm-version-imagenpm-url !NPM downloadsnpm-downloads-imagenpm-url !MIT Licenselicense-imagelicense-url

Usage

import curry from 'curri'

const add = (a, b) => a + b
const add3 = curry(add)(3)

console.log(add3(5)) // 8

API

curry

Function to curry any javascript method
Parameters
  • fn Function the target function we want to curry
  • acc ...\[args initial arguments

Returns (Function | any) it will return a function until the target function
will receive all of its arguments