es.function.bind.js 306 B

123456789
  1. // TODO: Remove from `core-js@4`
  2. var $ = require('../internals/export');
  3. var bind = require('../internals/function-bind');
  4. // `Function.prototype.bind` method
  5. // https://tc39.es/ecma262/#sec-function.prototype.bind
  6. $({ target: 'Function', proto: true, forced: Function.bind !== bind }, {
  7. bind: bind
  8. });