Initial Save
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.at');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'at');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.concat');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'concat');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.copy-within');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'copyWithin');
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.iterator');
|
||||
require('../../modules/es.object.to-string');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'entries');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.every');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'every');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.fill');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'fill');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.filter');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'filter');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.find-index');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'findIndex');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.find-last-index');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'findLastIndex');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.find-last');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'findLast');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.find');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'find');
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.flat-map');
|
||||
require('../../modules/es.array.unscopables.flat-map');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'flatMap');
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.flat');
|
||||
require('../../modules/es.array.unscopables.flat');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'flat');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.for-each');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'forEach');
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
require('../../modules/es.string.iterator');
|
||||
require('../../modules/es.array.from');
|
||||
var path = require('../../internals/path');
|
||||
|
||||
module.exports = path.Array.from;
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.includes');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'includes');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.index-of');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'indexOf');
|
||||
+44
@@ -0,0 +1,44 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.from');
|
||||
require('../../modules/es.array.is-array');
|
||||
require('../../modules/es.array.of');
|
||||
require('../../modules/es.array.at');
|
||||
require('../../modules/es.array.concat');
|
||||
require('../../modules/es.array.copy-within');
|
||||
require('../../modules/es.array.every');
|
||||
require('../../modules/es.array.fill');
|
||||
require('../../modules/es.array.filter');
|
||||
require('../../modules/es.array.find');
|
||||
require('../../modules/es.array.find-index');
|
||||
require('../../modules/es.array.find-last');
|
||||
require('../../modules/es.array.find-last-index');
|
||||
require('../../modules/es.array.flat');
|
||||
require('../../modules/es.array.flat-map');
|
||||
require('../../modules/es.array.for-each');
|
||||
require('../../modules/es.array.includes');
|
||||
require('../../modules/es.array.index-of');
|
||||
require('../../modules/es.array.iterator');
|
||||
require('../../modules/es.array.join');
|
||||
require('../../modules/es.array.last-index-of');
|
||||
require('../../modules/es.array.map');
|
||||
require('../../modules/es.array.push');
|
||||
require('../../modules/es.array.reduce');
|
||||
require('../../modules/es.array.reduce-right');
|
||||
require('../../modules/es.array.reverse');
|
||||
require('../../modules/es.array.slice');
|
||||
require('../../modules/es.array.some');
|
||||
require('../../modules/es.array.sort');
|
||||
require('../../modules/es.array.species');
|
||||
require('../../modules/es.array.splice');
|
||||
require('../../modules/es.array.to-reversed');
|
||||
require('../../modules/es.array.to-sorted');
|
||||
require('../../modules/es.array.to-spliced');
|
||||
require('../../modules/es.array.unscopables.flat');
|
||||
require('../../modules/es.array.unscopables.flat-map');
|
||||
require('../../modules/es.array.unshift');
|
||||
require('../../modules/es.array.with');
|
||||
require('../../modules/es.object.to-string');
|
||||
require('../../modules/es.string.iterator');
|
||||
var path = require('../../internals/path');
|
||||
|
||||
module.exports = path.Array;
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.is-array');
|
||||
var path = require('../../internals/path');
|
||||
|
||||
module.exports = path.Array.isArray;
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.iterator');
|
||||
require('../../modules/es.object.to-string');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'values');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.join');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'join');
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.iterator');
|
||||
require('../../modules/es.object.to-string');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'keys');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.last-index-of');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'lastIndexOf');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.map');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'map');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.of');
|
||||
var path = require('../../internals/path');
|
||||
|
||||
module.exports = path.Array.of;
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.push');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'push');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.reduce-right');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'reduceRight');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.reduce');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'reduce');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.reverse');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'reverse');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.slice');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'slice');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.some');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'some');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.sort');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'sort');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.splice');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'splice');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.to-reversed');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'toReversed');
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.sort');
|
||||
require('../../modules/es.array.to-sorted');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'toSorted');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.to-spliced');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'toSpliced');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.unshift');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'unshift');
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.iterator');
|
||||
require('../../modules/es.object.to-string');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'values');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.at');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'at');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.concat');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'concat');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.copy-within');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'copyWithin');
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.iterator');
|
||||
require('../../../modules/es.object.to-string');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'entries');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.every');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'every');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.fill');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'fill');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.filter');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'filter');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.find-index');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'findIndex');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.find-last-index');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'findLastIndex');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.find-last');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'findLast');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.find');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'find');
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.flat-map');
|
||||
require('../../../modules/es.array.unscopables.flat-map');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'flatMap');
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.flat');
|
||||
require('../../../modules/es.array.unscopables.flat');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'flat');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.for-each');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'forEach');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.includes');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'includes');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.index-of');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'indexOf');
|
||||
+40
@@ -0,0 +1,40 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.at');
|
||||
require('../../../modules/es.array.concat');
|
||||
require('../../../modules/es.array.copy-within');
|
||||
require('../../../modules/es.array.every');
|
||||
require('../../../modules/es.array.fill');
|
||||
require('../../../modules/es.array.filter');
|
||||
require('../../../modules/es.array.find');
|
||||
require('../../../modules/es.array.find-index');
|
||||
require('../../../modules/es.array.find-last');
|
||||
require('../../../modules/es.array.find-last-index');
|
||||
require('../../../modules/es.array.flat');
|
||||
require('../../../modules/es.array.flat-map');
|
||||
require('../../../modules/es.array.for-each');
|
||||
require('../../../modules/es.array.includes');
|
||||
require('../../../modules/es.array.index-of');
|
||||
require('../../../modules/es.array.iterator');
|
||||
require('../../../modules/es.array.join');
|
||||
require('../../../modules/es.array.last-index-of');
|
||||
require('../../../modules/es.array.map');
|
||||
require('../../../modules/es.array.push');
|
||||
require('../../../modules/es.array.reduce');
|
||||
require('../../../modules/es.array.reduce-right');
|
||||
require('../../../modules/es.array.reverse');
|
||||
require('../../../modules/es.array.slice');
|
||||
require('../../../modules/es.array.some');
|
||||
require('../../../modules/es.array.sort');
|
||||
require('../../../modules/es.array.species');
|
||||
require('../../../modules/es.array.splice');
|
||||
require('../../../modules/es.array.to-reversed');
|
||||
require('../../../modules/es.array.to-sorted');
|
||||
require('../../../modules/es.array.to-spliced');
|
||||
require('../../../modules/es.array.unscopables.flat');
|
||||
require('../../../modules/es.array.unscopables.flat-map');
|
||||
require('../../../modules/es.array.unshift');
|
||||
require('../../../modules/es.array.with');
|
||||
require('../../../modules/es.object.to-string');
|
||||
var entryVirtual = require('../../../internals/entry-virtual');
|
||||
|
||||
module.exports = entryVirtual('Array');
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.iterator');
|
||||
require('../../../modules/es.object.to-string');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'values');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.join');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'join');
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.iterator');
|
||||
require('../../../modules/es.object.to-string');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'keys');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.last-index-of');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'lastIndexOf');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.map');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'map');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.push');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'push');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.reduce-right');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'reduceRight');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.reduce');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'reduce');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.reverse');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'reverse');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.slice');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'slice');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.some');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'some');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.sort');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'sort');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.splice');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'splice');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.to-reversed');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'toReversed');
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.sort');
|
||||
require('../../../modules/es.array.to-sorted');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'toSorted');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.to-spliced');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'toSpliced');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.unshift');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'unshift');
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.iterator');
|
||||
require('../../../modules/es.object.to-string');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'values');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../../modules/es.array.with');
|
||||
var getBuiltInPrototypeMethod = require('../../../internals/get-built-in-prototype-method');
|
||||
|
||||
module.exports = getBuiltInPrototypeMethod('Array', 'with');
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.array.with');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Array', 'with');
|
||||
Reference in New Issue
Block a user