es.function.bind.js 248 B

12345678
  1. var $ = require('../internals/export');
  2. var bind = require('../internals/function-bind');
  3. // `Function.prototype.bind` method
  4. // https://tc39.github.io/ecma262/#sec-function.prototype.bind
  5. $({ target: 'Function', proto: true }, {
  6. bind: bind
  7. });