mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
9 lines
290 B
JavaScript
9 lines
290 B
JavaScript
// 26.1.1 Reflect.apply(target, thisArgument, argumentsList)
|
|
var $export = require('./$.export')
|
|
, _apply = Function.apply;
|
|
|
|
$export($export.S, 'Reflect', {
|
|
apply: function apply(target, thisArgument, argumentsList){
|
|
return _apply.call(target, thisArgument, argumentsList);
|
|
}
|
|
}); |