0.1.0 • Published 12 years ago
hh v0.1.0
hh
Simple partial application library (high order function)
Installation
Server side
$ npm install hh
Browser side (using component.io)
$ component install nicolagreco/hh
Usage
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
0.1.0
12 years ago