summaryrefslogtreecommitdiff
path: root/includes/fcm/node_modules/underscore/cjs/bindAll.js
blob: 12c140236560e0a7b39039eb361240f9a76b04c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
var restArguments = require('./restArguments.js');
var _flatten = require('./_flatten.js');
var bind = require('./bind.js');

// Bind a number of an object's methods to that object. Remaining arguments
// are the method names to be bound. Useful for ensuring that all callbacks
// defined on an object belong to it.
var bindAll = restArguments(function(obj, keys) {
  keys = _flatten(keys, false, false);
  var index = keys.length;
  if (index < 1) throw new Error('bindAll must be passed function names');
  while (index--) {
    var key = keys[index];
    obj[key] = bind(obj[key], obj);
  }
  return obj;
});

module.exports = bindAll;