mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
react app
This commit is contained in:
17
react-app/node_modules/core-js/modules/js.array.statics.js
generated
vendored
Normal file
17
react-app/node_modules/core-js/modules/js.array.statics.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
// JavaScript 1.6 / Strawman array statics shim
|
||||
var $ = require('./$')
|
||||
, $export = require('./$.export')
|
||||
, $ctx = require('./$.ctx')
|
||||
, $Array = require('./$.core').Array || Array
|
||||
, statics = {};
|
||||
var setStatics = function(keys, length){
|
||||
$.each.call(keys.split(','), function(key){
|
||||
if(length == undefined && key in $Array)statics[key] = $Array[key];
|
||||
else if(key in [])statics[key] = $ctx(Function.call, [][key], length);
|
||||
});
|
||||
};
|
||||
setStatics('pop,reverse,shift,keys,values,entries', 1);
|
||||
setStatics('indexOf,every,some,forEach,map,filter,find,findIndex,includes', 3);
|
||||
setStatics('join,slice,concat,push,splice,unshift,sort,lastIndexOf,' +
|
||||
'reduce,reduceRight,copyWithin,fill');
|
||||
$export($export.S, 'Array', statics);
|
Reference in New Issue
Block a user