Sha256: 11e6505e330581fe063933fe365065029816cdd10849a02986a096177a1d1683

Contents?: true

Size: 655 Bytes

Versions: 66

Compression:

Stored size: 655 Bytes

Contents

// 26.1.1 Reflect.apply(target, thisArgument, argumentsList)
var $export = require('./_export');
var aFunction = require('./_a-function');
var anObject = require('./_an-object');
var rApply = (require('./_global').Reflect || {}).apply;
var fApply = Function.apply;
// MS Edge argumentsList argument is optional
$export($export.S + $export.F * !require('./_fails')(function () {
  rApply(function () { /* empty */ });
}), 'Reflect', {
  apply: function apply(target, thisArgument, argumentsList) {
    var T = aFunction(target);
    var L = anObject(argumentsList);
    return rApply ? rApply(T, thisArgument, L) : fApply.call(T, thisArgument, L);
  }
});

Version data entries

66 entries across 30 versions & 8 rubygems

Version Path
cortex-0.1.3 spec/dummy/node_modules/core-js/library/modules/es6.reflect.apply.js
cortex-0.1.3 spec/dummy/node_modules/core-js/modules/es6.reflect.apply.js
condenser-0.0.4 lib/condenser/processors/node_modules/core-js/modules/es6.reflect.apply.js
condenser-0.0.4 lib/condenser/processors/node_modules/core-js/library/modules/es6.reflect.apply.js
dragonfly_puppeteer-0.1.0 node_modules/core-js/library/modules/es6.reflect.apply.js
dragonfly_puppeteer-0.1.0 node_modules/core-js/modules/es6.reflect.apply.js