0.0.1 • Published 11 years ago

lazybind v0.0.1

Weekly downloads
1
License
-
Repository
github
Last release
11 years ago

lazybind

Create functions that accept the receiver as its first argument and n arguments after.

install

$ npm install lazybind

usage

var lazybind = require('lazybind');
var a = [];
var push = lazybind(Array.prototype, 'push');
push(a, 1);
push(a, 2);
push(a, 3);

license

MIT