es6.reflect.apply.js 342 B

12345678910
  1. // 26.1.1 Reflect.apply(target, thisArgument, argumentsList)
  2. var $export = require('./$.export')
  3. , _apply = Function.apply
  4. , anObject = require('./$.an-object');
  5. $export($export.S, 'Reflect', {
  6. apply: function apply(target, thisArgument, argumentsList){
  7. return _apply.call(target, thisArgument, anObject(argumentsList));
  8. }
  9. });