de754f6a779957538bcf64a02780ffe06f566baadce37d444ecb02f8a9b922409bd2e8a9fd82e63a00bc6fc6860076af4dc8382b4f94c617e00aa11d7e07fd 401 B

1234567891011
  1. 'use strict';
  2. var NATIVE_BIND = require('../internals/function-bind-native');
  3. var FunctionPrototype = Function.prototype;
  4. var apply = FunctionPrototype.apply;
  5. var call = FunctionPrototype.call;
  6. // eslint-disable-next-line es/no-reflect -- safe
  7. module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {
  8. return call.apply(apply, arguments);
  9. });