Express addition
This commit is contained in:
+2
@@ -0,0 +1,2 @@
|
||||
require('../modules/core.function.part');
|
||||
module.exports = require('../modules/_core')._;
|
||||
+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;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../modules/es7.asap');
|
||||
module.exports = require('../modules/_core').asap;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../modules/web.immediate');
|
||||
module.exports = require('../modules/_core').clearImmediate;
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
require('../../modules/es6.date.now');
|
||||
require('../../modules/es6.date.to-json');
|
||||
require('../../modules/es6.date.to-iso-string');
|
||||
require('../../modules/es6.date.to-string');
|
||||
require('../../modules/es6.date.to-primitive');
|
||||
module.exports = require('../../modules/_core').Date;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.date.now');
|
||||
module.exports = require('../../modules/_core').Date.now;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
require('../../modules/es6.date.to-json');
|
||||
require('../../modules/es6.date.to-iso-string');
|
||||
module.exports = require('../../modules/_core').Date.toISOString;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.date.to-json');
|
||||
module.exports = require('../../modules/_core').Date.toJSON;
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
require('../../modules/es6.date.to-primitive');
|
||||
var toPrimitive = require('../../modules/_date-to-primitive');
|
||||
module.exports = function (it, hint) {
|
||||
return toPrimitive.call(it, hint);
|
||||
};
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
require('../../modules/es6.date.to-string');
|
||||
var $toString = Date.prototype.toString;
|
||||
module.exports = function toString(it) {
|
||||
return $toString.call(it);
|
||||
};
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../modules/core.delay');
|
||||
module.exports = require('../modules/_core').delay;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../modules/core.dict');
|
||||
module.exports = require('../modules/_core').Dict;
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
require('../../modules/web.dom.iterable');
|
||||
var $iterators = require('../../modules/es6.array.iterator');
|
||||
module.exports = {
|
||||
keys: $iterators.keys,
|
||||
values: $iterators.values,
|
||||
entries: $iterators.entries,
|
||||
iterator: $iterators.values
|
||||
};
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/web.dom.iterable');
|
||||
module.exports = require('../../modules/_core').Array.values;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es7.error.is-error');
|
||||
module.exports = require('../../modules/_core').Error;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es7.error.is-error');
|
||||
module.exports = require('../../modules/_core').Error.isError;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.function.bind');
|
||||
module.exports = require('../../modules/_core').Function.bind;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.function.has-instance');
|
||||
module.exports = Function[require('../../modules/_wks')('hasInstance')];
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
require('../../modules/es6.function.bind');
|
||||
require('../../modules/es6.function.name');
|
||||
require('../../modules/es6.function.has-instance');
|
||||
require('../../modules/core.function.part');
|
||||
module.exports = require('../../modules/_core').Function;
|
||||
+1
@@ -0,0 +1 @@
|
||||
require('../../modules/es6.function.name');
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/core.function.part');
|
||||
module.exports = require('../../modules/_core').Function.part;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/es6.function.bind');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Function').bind;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
require('../../../modules/es6.function.bind');
|
||||
require('../../../modules/core.function.part');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Function');
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../../modules/core.function.part');
|
||||
module.exports = require('../../../modules/_entry-virtual')('Function').part;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
require('../modules/web.dom.iterable');
|
||||
require('../modules/es6.string.iterator');
|
||||
module.exports = require('../modules/core.get-iterator-method');
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
require('../modules/web.dom.iterable');
|
||||
require('../modules/es6.string.iterator');
|
||||
module.exports = require('../modules/core.get-iterator');
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../modules/es7.global');
|
||||
module.exports = require('../modules/_core').global;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
require('../modules/web.dom.iterable');
|
||||
require('../modules/es6.string.iterator');
|
||||
module.exports = require('../modules/core.is-iterable');
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
var core = require('../../modules/_core');
|
||||
module.exports = core.JSON || (core.JSON = { stringify: JSON.stringify });
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
var core = require('../../modules/_core');
|
||||
var $JSON = core.JSON || (core.JSON = { stringify: JSON.stringify });
|
||||
module.exports = function stringify(it) { // eslint-disable-line no-unused-vars
|
||||
return $JSON.stringify.apply($JSON, arguments);
|
||||
};
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
require('../modules/es6.object.to-string');
|
||||
require('../modules/es6.string.iterator');
|
||||
require('../modules/web.dom.iterable');
|
||||
require('../modules/es6.map');
|
||||
require('../modules/es7.map.to-json');
|
||||
require('../modules/es7.map.of');
|
||||
require('../modules/es7.map.from');
|
||||
module.exports = require('../modules/_core').Map;
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
'use strict';
|
||||
require('../../modules/es6.map');
|
||||
require('../../modules/es7.map.from');
|
||||
var $Map = require('../../modules/_core').Map;
|
||||
var $from = $Map.from;
|
||||
module.exports = function from(source, mapFn, thisArg) {
|
||||
return $from.call(typeof this === 'function' ? this : $Map, source, mapFn, thisArg);
|
||||
};
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
require('../../modules/es6.object.to-string');
|
||||
require('../../modules/es6.string.iterator');
|
||||
require('../../modules/web.dom.iterable');
|
||||
require('../../modules/es6.map');
|
||||
require('../../modules/es7.map.to-json');
|
||||
require('../../modules/es7.map.of');
|
||||
require('../../modules/es7.map.from');
|
||||
module.exports = require('../../modules/_core').Map;
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
'use strict';
|
||||
require('../../modules/es6.map');
|
||||
require('../../modules/es7.map.of');
|
||||
var $Map = require('../../modules/_core').Map;
|
||||
var $of = $Map.of;
|
||||
module.exports = function of() {
|
||||
return $of.apply(typeof this === 'function' ? this : $Map, arguments);
|
||||
};
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.math.acosh');
|
||||
module.exports = require('../../modules/_core').Math.acosh;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.math.asinh');
|
||||
module.exports = require('../../modules/_core').Math.asinh;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.math.atanh');
|
||||
module.exports = require('../../modules/_core').Math.atanh;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.math.cbrt');
|
||||
module.exports = require('../../modules/_core').Math.cbrt;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es7.math.clamp');
|
||||
module.exports = require('../../modules/_core').Math.clamp;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.math.clz32');
|
||||
module.exports = require('../../modules/_core').Math.clz32;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es6.math.cosh');
|
||||
module.exports = require('../../modules/_core').Math.cosh;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es7.math.deg-per-rad');
|
||||
module.exports = Math.PI / 180;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
require('../../modules/es7.math.degrees');
|
||||
module.exports = require('../../modules/_core').Math.degrees;
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user