bind.js 261 Bytes
Newer Older
Lalita's avatar
Lalita committed
1 2 3 4 5 6 7 8
var bind = require('../function/virtual/bind');

var FunctionPrototype = Function.prototype;

module.exports = function (it) {
  var own = it.bind;
  return it === FunctionPrototype || (it instanceof Function && own === FunctionPrototype.bind) ? bind : own;
};