Skip to content

iCoder2011/functional-js

 
 

Repository files navigation

functional.js (λ) Build Status npm version devDependency Status

functional.js is a functional JavaScript library.

It facilitates currying and point-free / tacit programming.

Documentation

Visit functionaljs.com for the full documentation.

Quick example

var add = λ.curry(function(arg1, arg2) {
    return arg1 + arg2;
});

var add3 = add(3);

add(1, 2, 3); // => 6
add3(1, 2, 3, 4, 5); // => 18

License

MIT License

About

A functional js library that facilitates currying and point-free / tacit programming

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published