GT2/Ejectable/node_modules/core-js/modules/es6.reflect.apply.js

10 lines
342 B
JavaScript
Raw Normal View History

2021-08-16 00:14:59 +00:00
// 26.1.1 Reflect.apply(target, thisArgument, argumentsList)
var $export = require('./$.export')
, _apply = Function.apply
, anObject = require('./$.an-object');
$export($export.S, 'Reflect', {
apply: function apply(target, thisArgument, argumentsList){
return _apply.call(target, thisArgument, anObject(argumentsList));
}
});