mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 11:20:19 +00:00
9 lines
261 B
JavaScript
9 lines
261 B
JavaScript
|
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;
|
||
|
};
|