Express addition
This commit is contained in:
+4
@@ -0,0 +1,4 @@
|
||||
// for a legacy code and future fixes
|
||||
module.exports = function () {
|
||||
return Function.call.apply(Array.prototype.concat, arguments);
|
||||
};
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.copy-within');
|
||||
module.exports = require('../../modules/_core').Array.copyWithin;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.iterator');
|
||||
module.exports = require('../../modules/_core').Array.entries;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.every');
|
||||
module.exports = require('../../modules/_core').Array.every;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.fill');
|
||||
module.exports = require('../../modules/_core').Array.fill;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.filter');
|
||||
module.exports = require('../../modules/_core').Array.filter;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.find-index');
|
||||
module.exports = require('../../modules/_core').Array.findIndex;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.find');
|
||||
module.exports = require('../../modules/_core').Array.find;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es7.array.flat-map');
|
||||
module.exports = require('../../modules/_core').Array.flatMap;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es7.array.flatten');
|
||||
module.exports = require('../../modules/_core').Array.flatten;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.for-each');
|
||||
module.exports = require('../../modules/_core').Array.forEach;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
require('../../modules/es6.string.iterator');
|
||||
require('../../modules/es6.array.from');
|
||||
module.exports = require('../../modules/_core').Array.from;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es7.array.includes');
|
||||
module.exports = require('../../modules/_core').Array.includes;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.index-of');
|
||||
module.exports = require('../../modules/_core').Array.indexOf;
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
require('../../modules/es6.string.iterator');
|
||||
require('../../modules/es6.array.is-array');
|
||||
require('../../modules/es6.array.from');
|
||||
require('../../modules/es6.array.of');
|
||||
require('../../modules/es6.array.join');
|
||||
require('../../modules/es6.array.slice');
|
||||
require('../../modules/es6.array.sort');
|
||||
require('../../modules/es6.array.for-each');
|
||||
require('../../modules/es6.array.map');
|
||||
require('../../modules/es6.array.filter');
|
||||
require('../../modules/es6.array.some');
|
||||
require('../../modules/es6.array.every');
|
||||
require('../../modules/es6.array.reduce');
|
||||
require('../../modules/es6.array.reduce-right');
|
||||
require('../../modules/es6.array.index-of');
|
||||
require('../../modules/es6.array.last-index-of');
|
||||
require('../../modules/es6.array.copy-within');
|
||||
require('../../modules/es6.array.fill');
|
||||
require('../../modules/es6.array.find');
|
||||
require('../../modules/es6.array.find-index');
|
||||
require('../../modules/es6.array.species');
|
||||
require('../../modules/es6.array.iterator');
|
||||
require('../../modules/es7.array.includes');
|
||||
require('../../modules/es7.array.flat-map');
|
||||
require('../../modules/es7.array.flatten');
|
||||
module.exports = require('../../modules/_core').Array;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.is-array');
|
||||
module.exports = require('../../modules/_core').Array.isArray;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.iterator');
|
||||
module.exports = require('../../modules/_core').Array.values;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.join');
|
||||
module.exports = require('../../modules/_core').Array.join;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.iterator');
|
||||
module.exports = require('../../modules/_core').Array.keys;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.last-index-of');
|
||||
module.exports = require('../../modules/_core').Array.lastIndexOf;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.map');
|
||||
module.exports = require('../../modules/_core').Array.map;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.of');
|
||||
module.exports = require('../../modules/_core').Array.of;
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
// for a legacy code and future fixes
|
||||
module.exports = function () {
|
||||
return Function.call.apply(Array.prototype.pop, arguments);
|
||||
};
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
// for a legacy code and future fixes
|
||||
module.exports = function () {
|
||||
return Function.call.apply(Array.prototype.push, arguments);
|
||||
};
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.reduce-right');
|
||||
module.exports = require('../../modules/_core').Array.reduceRight;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.reduce');
|
||||
module.exports = require('../../modules/_core').Array.reduce;
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
// for a legacy code and future fixes
|
||||
module.exports = function () {
|
||||
return Function.call.apply(Array.prototype.reverse, arguments);
|
||||
};
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
// for a legacy code and future fixes
|
||||
module.exports = function () {
|
||||
return Function.call.apply(Array.prototype.shift, arguments);
|
||||
};
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.slice');
|
||||
module.exports = require('../../modules/_core').Array.slice;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.some');
|
||||
module.exports = require('../../modules/_core').Array.some;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.sort');
|
||||
module.exports = require('../../modules/_core').Array.sort;
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
// for a legacy code and future fixes
|
||||
module.exports = function () {
|
||||
return Function.call.apply(Array.prototype.splice, arguments);
|
||||
};
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
// for a legacy code and future fixes
|
||||
module.exports = function () {
|
||||
return Function.call.apply(Array.prototype.unshift, arguments);
|
||||
};
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.array.iterator');
|
||||
module.exports = require('../../modules/_core').Array.values;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.copy-within');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').copyWithin;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.iterator');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').entries;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.every');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').every;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.fill');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').fill;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.filter');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').filter;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.find-index');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').findIndex;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.find');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').find;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es7.array.flat-map');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').flatMap;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es7.array.flatten');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').flatten;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.for-each');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').forEach;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es7.array.includes');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').includes;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.index-of');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').indexOf;
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
require('../../../modules/es6.array.join');
|
||||
require('../../../modules/es6.array.slice');
|
||||
require('../../../modules/es6.array.sort');
|
||||
require('../../../modules/es6.array.for-each');
|
||||
require('../../../modules/es6.array.map');
|
||||
require('../../../modules/es6.array.filter');
|
||||
require('../../../modules/es6.array.some');
|
||||
require('../../../modules/es6.array.every');
|
||||
require('../../../modules/es6.array.reduce');
|
||||
require('../../../modules/es6.array.reduce-right');
|
||||
require('../../../modules/es6.array.index-of');
|
||||
require('../../../modules/es6.array.last-index-of');
|
||||
require('../../../modules/es6.string.iterator');
|
||||
require('../../../modules/es6.array.iterator');
|
||||
require('../../../modules/es6.array.copy-within');
|
||||
require('../../../modules/es6.array.fill');
|
||||
require('../../../modules/es6.array.find');
|
||||
require('../../../modules/es6.array.find-index');
|
||||
require('../../../modules/es7.array.includes');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array');
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.iterator');
|
||||
module.exports = require('../../../modules/_iterators').Array;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.join');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').join;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.iterator');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').keys;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.last-index-of');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').lastIndexOf;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.map');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').map;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.reduce-right');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').reduceRight;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.reduce');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').reduce;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.slice');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').slice;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.some');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').some;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.sort');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Array').sort;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.array.iterator');
|
||||
module.exports = require('../../../modules/_iterators').Array;
|
||||
Reference in New Issue
Block a user