objbind
v1.0.0
Published
bind all the functions on an object
Readme
objbind
objbind takes an object and returns an object that inherits from it with all the enumerable functions bound to the first object. confused? here's an example:
var winston = require('winston')
, objbind = require('objbind')
, myWinston = objbind(winston, 'nathan says')
myWinston.info('hi')
console.log(myWinston.loggers === winston.loggers)output:
info: nathan says hi
trueobjbind(obj, args...)
- newObj = Object.create(obj)
- for each enumerable function property of obj, assign fn.bind(obj, args...) to the same key on newObj
- return newObj
