lazybind
v0.0.1
Published
Create functions that accept the receiver as its first argument and `n` arguments after
Downloads
164
Readme
lazybind
Create functions that accept the receiver as its first argument and n
arguments after.
install
$ npm install lazybindusage
var lazybind = require('lazybind');
var a = [];
var push = lazybind(Array.prototype, 'push');
push(a, 1);
push(a, 2);
push(a, 3);license
MIT
