blob: 361a2e2e5ab2645372c7f15db544c1b42163639f (
plain)
1
2
3
4
5
6
7
8
9
10
|
// 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));
}
});
|