hh
v0.1.0
Published
Simple partial application library (high order function)
Readme
hh
Simple partial application library (high order function)
Installation
Server side
$ npm install hhBrowser side (using component.io)
$ component install nicolagreco/hhUsage
var hh = require('hh');
function test(item) {
console.log(item);
}
hh(test, "this is a test");
// it will return a function
// instead of
function() { return test("this is a test");}
License
MIT
