bind.js 261 Bytes Raw Blame History Permalink 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; };