0.1.0 • Published 12 years ago

hh v0.1.0

Weekly downloads
5
License
-
Repository
github
Last release
12 years ago

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