es6.reflect.apply.js 297 B

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