super-curry

1.0.1 • Public • Published

super-curry Build Status

Optimized utility to currify any function.

Examples

See it in action here

import curry from 'super-curry'
 
const linear = curry(
  (a, x, b) => a * x + b
)
 
// it can be called normally
console.info(linear(2, 6, 3))
// 2 * 6 + 3 = 15
 
// with simple partial application
const linearBy4 = linear(4)
console.info(linearBy4(5, 2))
// 4 * 5 + 2 = 22
 
// or with placeholder(s)
const linearBy4Plus2 = linear(4, curry, 2)
// linearBy4(curry, 2) works too
console.info(linearBy4Plus2(6))
// 4 * 6 + 2 = 26

Package Sidebar

Install

npm i super-curry

Weekly Downloads

14

Version

1.0.1

License

MIT

Unpacked Size

10.5 kB

Total Files

8

Last publish

Collaborators

  • nigelkozlowski