PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
mout
/
object
var functions = require('./functions'); var bind = require('../function/bind'); var forEach = require('../array/forEach'); var slice = require('../array/slice'); /** * Binds methods of the object to be run in it's own context. */ function bindAll(obj, rest_methodNames){ var keys = arguments.length > 1? slice(arguments, 1) : functions(obj); forEach(keys, function(key){ obj[key] = bind(obj[key], obj); }); } module.exports = bindAll;
[-] functions.js
[edit]
[-] forOwn.js
[edit]
[-] find.js
[edit]
[-] equals.js
[edit]
[-] omit.js
[edit]
[-] deepFillIn.js
[edit]
[-] fillIn.js
[edit]
[-] reduce.js
[edit]
[-] max.js
[edit]
[+]
..
[-] contains.js
[edit]
[-] unset.js
[edit]
[-] some.js
[edit]
[-] pluck.js
[edit]
[-] flatten.js
[edit]
[-] has.js
[edit]
[-] merge.js
[edit]
[-] bindAll.js
[edit]
[-] pick.js
[edit]
[-] min.js
[edit]
[-] get.js
[edit]
[-] deepMatches.js
[edit]
[-] mixIn.js
[edit]
[-] values.js
[edit]
[-] size.js
[edit]
[-] reject.js
[edit]
[-] forIn.js
[edit]
[-] hasOwn.js
[edit]
[-] map.js
[edit]
[-] namespace.js
[edit]
[-] filter.js
[edit]
[-] every.js
[edit]
[-] matches.js
[edit]
[-] result.js
[edit]
[-] deepMixIn.js
[edit]
[-] set.js
[edit]
[-] keys.js
[edit]