core-js 3.14.0 → 3.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -3
- package/es/aggregate-error.js +1 -1
- package/es/array/entries.js +1 -0
- package/es/array/index.js +2 -1
- package/es/array/iterator.js +1 -0
- package/es/array/keys.js +1 -0
- package/es/array/values.js +1 -0
- package/es/array/virtual/entries.js +1 -0
- package/es/array/virtual/index.js +1 -0
- package/es/array/virtual/iterator.js +1 -0
- package/es/array/virtual/keys.js +1 -0
- package/es/array/virtual/values.js +1 -0
- package/es/date/get-year.js +4 -0
- package/es/date/index.js +4 -1
- package/es/date/set-year.js +4 -0
- package/es/date/to-gmt-string.js +4 -0
- package/es/escape.js +4 -0
- package/es/index.js +7 -0
- package/es/map/index.js +1 -1
- package/es/promise/all-settled.js +2 -1
- package/es/promise/any.js +2 -1
- package/es/promise/finally.js +1 -0
- package/es/promise/index.js +1 -1
- package/es/reflect/index.js +1 -0
- package/es/reflect/to-string-tag.js +1 -0
- package/es/regexp/constructor.js +3 -0
- package/es/regexp/dot-all.js +7 -0
- package/es/regexp/index.js +1 -0
- package/es/regexp/match.js +1 -0
- package/es/regexp/replace.js +1 -0
- package/es/regexp/search.js +1 -0
- package/es/regexp/split.js +1 -0
- package/es/regexp/sticky.js +2 -0
- package/es/set/index.js +2 -2
- package/es/string/index.js +2 -0
- package/es/string/iterator.js +1 -0
- package/es/string/match-all.js +2 -0
- package/es/string/replace-all.js +2 -0
- package/es/string/substr.js +4 -0
- package/es/string/virtual/index.js +3 -0
- package/es/string/virtual/iterator.js +1 -0
- package/es/string/virtual/match-all.js +2 -0
- package/es/string/virtual/replace-all.js +2 -0
- package/es/string/virtual/substr.js +4 -0
- package/es/symbol/is-concat-spreadable.js +1 -1
- package/es/symbol/iterator.js +3 -2
- package/es/symbol/match-all.js +2 -0
- package/es/symbol/match.js +1 -0
- package/es/symbol/replace.js +1 -0
- package/es/symbol/search.js +1 -0
- package/es/symbol/split.js +1 -0
- package/es/symbol/to-primitive.js +1 -0
- package/es/symbol/to-string-tag.js +2 -2
- package/es/typed-array/entries.js +1 -0
- package/es/typed-array/iterator.js +1 -0
- package/es/typed-array/keys.js +1 -0
- package/es/typed-array/methods.js +2 -1
- package/es/typed-array/values.js +1 -0
- package/es/unescape.js +4 -0
- package/es/weak-map/index.js +1 -1
- package/es/weak-set/index.js +1 -1
- package/features/array/filter-out.js +1 -0
- package/features/array/filter-reject.js +4 -0
- package/features/array/group-by.js +4 -0
- package/features/array/index.js +3 -0
- package/features/array/virtual/filter-out.js +1 -0
- package/features/array/virtual/filter-reject.js +4 -0
- package/features/array/virtual/group-by.js +4 -0
- package/features/array/virtual/index.js +3 -0
- package/features/async-iterator/as-indexed-pairs.js +0 -2
- package/features/async-iterator/drop.js +0 -2
- package/features/async-iterator/every.js +0 -2
- package/features/async-iterator/filter.js +0 -2
- package/features/async-iterator/find.js +0 -2
- package/features/async-iterator/flat-map.js +0 -2
- package/features/async-iterator/for-each.js +0 -2
- package/features/async-iterator/from.js +1 -0
- package/features/async-iterator/index.js +1 -0
- package/features/async-iterator/map.js +0 -2
- package/features/async-iterator/reduce.js +0 -2
- package/features/async-iterator/some.js +0 -2
- package/features/async-iterator/take.js +0 -2
- package/features/async-iterator/to-array.js +0 -2
- package/features/date/get-year.js +3 -0
- package/features/date/set-year.js +3 -0
- package/features/date/to-gmt-string.js +3 -0
- package/features/escape.js +3 -0
- package/features/get-iterator-method.js +2 -1
- package/features/get-iterator.js +2 -1
- package/features/index.js +11 -0
- package/features/instance/filter-out.js +1 -0
- package/features/instance/filter-reject.js +8 -0
- package/features/instance/group-by.js +8 -0
- package/features/is-iterable.js +2 -1
- package/features/iterator/as-indexed-pairs.js +0 -2
- package/features/iterator/drop.js +0 -2
- package/features/iterator/every.js +0 -2
- package/features/iterator/filter.js +0 -2
- package/features/iterator/find.js +0 -2
- package/features/iterator/flat-map.js +0 -2
- package/features/iterator/for-each.js +0 -2
- package/features/iterator/from.js +1 -0
- package/features/iterator/index.js +1 -0
- package/features/iterator/map.js +0 -2
- package/features/iterator/reduce.js +0 -2
- package/features/iterator/some.js +0 -2
- package/features/iterator/take.js +0 -2
- package/features/iterator/to-array.js +0 -2
- package/features/map/from.js +1 -0
- package/features/map/of.js +1 -2
- package/features/number/range.js +1 -0
- package/features/regexp/dot-all.js +3 -0
- package/features/set/difference.js +1 -0
- package/features/set/from.js +1 -0
- package/features/set/intersection.js +3 -0
- package/features/set/is-disjoint-from.js +3 -0
- package/features/set/is-subset-of.js +1 -0
- package/features/set/is-superset-of.js +3 -0
- package/features/set/of.js +1 -2
- package/features/set/symmetric-difference.js +1 -0
- package/features/set/union.js +1 -0
- package/features/string/code-points.js +1 -0
- package/features/string/substr.js +3 -0
- package/features/string/virtual/code-points.js +1 -0
- package/features/string/virtual/substr.js +3 -0
- package/features/typed-array/copy-within.js +3 -1
- package/features/typed-array/entries.js +3 -1
- package/features/typed-array/every.js +3 -1
- package/features/typed-array/fill.js +3 -1
- package/features/typed-array/filter-out.js +1 -0
- package/features/typed-array/filter-reject.js +1 -0
- package/features/typed-array/filter.js +3 -1
- package/features/typed-array/find-index.js +3 -1
- package/features/typed-array/find.js +3 -1
- package/features/typed-array/float32-array.js +1 -1
- package/features/typed-array/float64-array.js +1 -1
- package/features/typed-array/for-each.js +3 -1
- package/features/typed-array/from.js +3 -1
- package/features/typed-array/group-by.js +1 -0
- package/features/typed-array/includes.js +3 -1
- package/features/typed-array/index-of.js +3 -1
- package/features/typed-array/index.js +4 -1
- package/features/typed-array/int16-array.js +1 -1
- package/features/typed-array/int32-array.js +1 -1
- package/features/typed-array/int8-array.js +1 -1
- package/features/typed-array/iterator.js +3 -1
- package/features/typed-array/join.js +3 -1
- package/features/typed-array/keys.js +3 -1
- package/features/typed-array/last-index-of.js +3 -1
- package/features/typed-array/map.js +3 -1
- package/features/typed-array/of.js +3 -1
- package/features/typed-array/reduce-right.js +3 -1
- package/features/typed-array/reduce.js +3 -1
- package/features/typed-array/reverse.js +3 -1
- package/features/typed-array/set.js +3 -1
- package/features/typed-array/slice.js +3 -1
- package/features/typed-array/some.js +3 -1
- package/features/typed-array/sort.js +3 -1
- package/features/typed-array/subarray.js +3 -1
- package/features/typed-array/to-locale-string.js +3 -1
- package/features/typed-array/to-string.js +3 -1
- package/features/typed-array/uint16-array.js +1 -1
- package/features/typed-array/uint32-array.js +1 -1
- package/features/typed-array/uint8-array.js +1 -1
- package/features/typed-array/uint8-clamped-array.js +1 -1
- package/features/typed-array/values.js +3 -1
- package/features/unescape.js +3 -0
- package/features/weak-map/from.js +1 -0
- package/features/weak-map/index.js +1 -0
- package/features/weak-map/of.js +1 -2
- package/features/weak-set/from.js +1 -0
- package/features/weak-set/index.js +1 -0
- package/features/weak-set/of.js +1 -2
- package/internals/array-buffer-view-core.js +16 -10
- package/internals/array-from-constructor-and-list.js +7 -0
- package/internals/array-group-by.js +33 -0
- package/internals/array-iteration-from-last.js +6 -6
- package/internals/array-iteration.js +6 -6
- package/internals/array-species-constructor.js +20 -0
- package/internals/array-species-create.js +2 -15
- package/internals/collection.js +1 -1
- package/internals/create-html.js +3 -2
- package/internals/create-property.js +2 -2
- package/internals/date-to-primitive.js +5 -4
- package/internals/engine-v8-version.js +2 -1
- package/internals/fix-regexp-well-known-symbol-logic.js +5 -62
- package/internals/get-built-in.js +1 -3
- package/internals/get-map-iterator.js +1 -4
- package/internals/get-set-iterator.js +1 -4
- package/internals/internal-metadata.js +33 -3
- package/internals/is-symbol.js +9 -0
- package/internals/number-parse-float.js +2 -1
- package/internals/number-parse-int.js +2 -1
- package/internals/object-create.js +17 -12
- package/internals/object-define-property.js +2 -2
- package/internals/object-get-own-property-descriptor.js +2 -2
- package/internals/ordinary-to-primitive.js +11 -0
- package/internals/regexp-exec.js +34 -8
- package/internals/regexp-sticky-helpers.js +3 -7
- package/internals/regexp-unsupported-dot-all.js +7 -0
- package/internals/regexp-unsupported-ncg.js +8 -0
- package/internals/set-global.js +2 -2
- package/internals/shared.js +1 -1
- package/internals/string-multibyte.js +3 -2
- package/internals/string-pad.js +3 -2
- package/internals/string-repeat.js +2 -1
- package/internals/string-trim.js +2 -1
- package/internals/task.js +9 -4
- package/internals/to-primitive.js +17 -9
- package/internals/to-property-key.js +9 -0
- package/internals/to-string.js +6 -0
- package/internals/typed-array-constructor.js +13 -5
- package/internals/typed-array-from-species-and-list.js +3 -8
- package/internals/typed-array-species-constructor.js +11 -0
- package/modules/es.aggregate-error.js +2 -1
- package/modules/es.array.sort.js +2 -1
- package/modules/es.date.get-year.js +17 -0
- package/modules/es.date.set-year.js +18 -0
- package/modules/es.date.to-gmt-string.js +7 -0
- package/modules/es.date.to-json.js +1 -1
- package/modules/es.date.to-string.js +1 -1
- package/modules/es.escape.js +36 -0
- package/modules/es.number.constructor.js +3 -1
- package/modules/es.object.lookup-getter.js +2 -2
- package/modules/es.object.lookup-setter.js +2 -2
- package/modules/es.promise.js +3 -2
- package/modules/es.reflect.define-property.js +2 -2
- package/modules/es.regexp.constructor.js +126 -24
- package/modules/es.regexp.dot-all.js +22 -0
- package/modules/es.regexp.flags.js +10 -8
- package/modules/es.regexp.sticky.js +1 -1
- package/modules/es.regexp.to-string.js +3 -2
- package/modules/es.string.ends-with.js +3 -2
- package/modules/es.string.includes.js +3 -2
- package/modules/es.string.iterator.js +2 -1
- package/modules/es.string.match-all.js +6 -5
- package/modules/es.string.match.js +9 -8
- package/modules/es.string.raw.js +3 -2
- package/modules/es.string.replace-all.js +7 -6
- package/modules/es.string.replace.js +45 -17
- package/modules/es.string.search.js +8 -7
- package/modules/es.string.split.js +22 -8
- package/modules/es.string.starts-with.js +3 -2
- package/modules/es.string.substr.js +26 -0
- package/modules/es.symbol.js +8 -13
- package/modules/es.typed-array.map.js +2 -3
- package/modules/es.typed-array.slice.js +3 -4
- package/modules/es.typed-array.subarray.js +3 -2
- package/modules/es.unescape.js +40 -0
- package/modules/es.weak-map.js +1 -1
- package/modules/esnext.array.filter-out.js +3 -2
- package/modules/esnext.array.filter-reject.js +14 -0
- package/modules/esnext.array.group-by.js +16 -0
- package/modules/esnext.map.merge.js +2 -1
- package/modules/esnext.string.at-alternative.js +3 -2
- package/modules/esnext.string.code-points.js +2 -1
- package/modules/esnext.typed-array.filter-out.js +3 -2
- package/modules/esnext.typed-array.filter-reject.js +14 -0
- package/modules/esnext.typed-array.group-by.js +14 -0
- package/modules/web.url-search-params.js +56 -36
- package/modules/web.url.js +17 -16
- package/package.json +3 -4
- package/postinstall.js +4 -2
- package/proposals/array-filtering.js +4 -0
- package/proposals/array-grouping.js +3 -0
- package/stable/aggregate-error.js +1 -0
- package/stable/date/get-year.js +3 -0
- package/stable/date/set-year.js +3 -0
- package/stable/date/to-gmt-string.js +3 -0
- package/stable/dom-collections/index.js +1 -0
- package/stable/dom-collections/iterator.js +1 -0
- package/stable/escape.js +3 -0
- package/stable/index.js +7 -0
- package/stable/map/index.js +1 -0
- package/stable/object/from-entries.js +1 -0
- package/stable/object/index.js +1 -0
- package/stable/promise/all-settled.js +1 -0
- package/stable/promise/any.js +1 -0
- package/stable/promise/index.js +1 -0
- package/stable/regexp/dot-all.js +3 -0
- package/stable/set/index.js +1 -0
- package/stable/string/substr.js +3 -0
- package/stable/string/virtual/substr.js +3 -0
- package/stable/symbol/index.js +1 -0
- package/stable/symbol/iterator.js +1 -0
- package/stable/typed-array/copy-within.js +3 -1
- package/stable/typed-array/entries.js +3 -1
- package/stable/typed-array/every.js +3 -1
- package/stable/typed-array/fill.js +3 -1
- package/stable/typed-array/filter.js +3 -1
- package/stable/typed-array/find-index.js +3 -1
- package/stable/typed-array/find.js +3 -1
- package/stable/typed-array/for-each.js +3 -1
- package/stable/typed-array/from.js +3 -1
- package/stable/typed-array/includes.js +3 -1
- package/stable/typed-array/index-of.js +3 -1
- package/stable/typed-array/iterator.js +3 -1
- package/stable/typed-array/join.js +3 -1
- package/stable/typed-array/keys.js +3 -1
- package/stable/typed-array/last-index-of.js +3 -1
- package/stable/typed-array/map.js +3 -1
- package/stable/typed-array/of.js +3 -1
- package/stable/typed-array/reduce-right.js +3 -1
- package/stable/typed-array/reduce.js +3 -1
- package/stable/typed-array/reverse.js +3 -1
- package/stable/typed-array/set.js +3 -1
- package/stable/typed-array/slice.js +3 -1
- package/stable/typed-array/some.js +3 -1
- package/stable/typed-array/sort.js +3 -1
- package/stable/typed-array/subarray.js +3 -1
- package/stable/typed-array/to-locale-string.js +3 -1
- package/stable/typed-array/to-string.js +3 -1
- package/stable/typed-array/values.js +3 -1
- package/stable/unescape.js +3 -0
- package/stable/url-search-params/index.js +1 -0
- package/stable/weak-map/index.js +1 -0
- package/stable/weak-set/index.js +1 -0
- package/stage/1.js +1 -0
- package/stage/2.js +0 -1
- package/stage/3.js +1 -0
- package/es/array/virtual/filter-out.js +0 -4
package/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# core-js
|
|
2
2
|
|
|
3
|
-
[](https://github.com/zloirock/core-js/actions)
|
|
3
|
+
[](https://opencollective.com/core-js) [](https://www.npmjs.com/package/core-js) [](https://npm-stat.com/charts.html?package=core-js&package=core-js-pure&package=core-js-compat&from=2014-11-18) [](https://npm-stat.com/charts.html?package=core-js&package=core-js-pure&package=core-js-compat&from=2014-11-18) [](https://github.com/zloirock/core-js/actions) [](https://github.com/zloirock/core-js/actions)
|
|
5
4
|
|
|
6
5
|
> Modular standard library for JavaScript. Includes polyfills for [ECMAScript up to 2021](https://github.com/zloirock/core-js#ecmascript): [promises](https://github.com/zloirock/core-js#ecmascript-promise), [symbols](https://github.com/zloirock/core-js#ecmascript-symbol), [collections](https://github.com/zloirock/core-js#ecmascript-collections), iterators, [typed arrays](https://github.com/zloirock/core-js#ecmascript-typed-arrays), many other features, [ECMAScript proposals](https://github.com/zloirock/core-js#ecmascript-proposals), [some cross-platform WHATWG / W3C features and proposals](#web-standards) like [`URL`](https://github.com/zloirock/core-js#url-and-urlsearchparams). You can load only required features or use it without global namespace pollution.
|
|
7
6
|
|
|
@@ -11,7 +10,7 @@
|
|
|
11
10
|
|
|
12
11
|
## Raising funds
|
|
13
12
|
|
|
14
|
-
`core-js` isn't backed by a company, so the future of this project depends on you. Become a sponsor or a backer [**
|
|
13
|
+
`core-js` isn't backed by a company, so the future of this project depends on you. Become a sponsor or a backer if you are interested in `core-js`: [**Open Collective**](https://opencollective.com/core-js), [**Patreon**](https://patreon.com/zloirock), [**PayPal**](https://paypal.me/zloirock), **Bitcoin ( bc1qlea7544qtsmj2rayg0lthvza9fau63ux0fstcz )**.
|
|
15
14
|
|
|
16
15
|
---
|
|
17
16
|
|
package/es/aggregate-error.js
CHANGED
package/es/array/entries.js
CHANGED
package/es/array/index.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
require('../../modules/es.string.iterator');
|
|
2
1
|
require('../../modules/es.array.from');
|
|
3
2
|
require('../../modules/es.array.is-array');
|
|
4
3
|
require('../../modules/es.array.of');
|
|
@@ -28,6 +27,8 @@ require('../../modules/es.array.species');
|
|
|
28
27
|
require('../../modules/es.array.splice');
|
|
29
28
|
require('../../modules/es.array.unscopables.flat');
|
|
30
29
|
require('../../modules/es.array.unscopables.flat-map');
|
|
30
|
+
require('../../modules/es.object.to-string');
|
|
31
|
+
require('../../modules/es.string.iterator');
|
|
31
32
|
var path = require('../../internals/path');
|
|
32
33
|
|
|
33
34
|
module.exports = path.Array;
|
package/es/array/iterator.js
CHANGED
package/es/array/keys.js
CHANGED
package/es/array/values.js
CHANGED
|
@@ -24,6 +24,7 @@ require('../../../modules/es.array.species');
|
|
|
24
24
|
require('../../../modules/es.array.splice');
|
|
25
25
|
require('../../../modules/es.array.unscopables.flat');
|
|
26
26
|
require('../../../modules/es.array.unscopables.flat-map');
|
|
27
|
+
require('../../../modules/es.object.to-string');
|
|
27
28
|
var entryVirtual = require('../../../internals/entry-virtual');
|
|
28
29
|
|
|
29
30
|
module.exports = entryVirtual('Array');
|
package/es/array/virtual/keys.js
CHANGED
package/es/date/index.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
require('../../modules/es.date.get-year');
|
|
1
2
|
require('../../modules/es.date.now');
|
|
2
|
-
require('../../modules/es.date.
|
|
3
|
+
require('../../modules/es.date.set-year');
|
|
4
|
+
require('../../modules/es.date.to-gmt-string');
|
|
3
5
|
require('../../modules/es.date.to-iso-string');
|
|
6
|
+
require('../../modules/es.date.to-json');
|
|
4
7
|
require('../../modules/es.date.to-string');
|
|
5
8
|
require('../../modules/es.date.to-primitive');
|
|
6
9
|
var path = require('../../internals/path');
|
package/es/escape.js
ADDED
package/es/index.js
CHANGED
|
@@ -47,11 +47,15 @@ require('../modules/es.array-buffer.constructor');
|
|
|
47
47
|
require('../modules/es.array-buffer.is-view');
|
|
48
48
|
require('../modules/es.array-buffer.slice');
|
|
49
49
|
require('../modules/es.data-view');
|
|
50
|
+
require('../modules/es.date.get-year');
|
|
50
51
|
require('../modules/es.date.now');
|
|
52
|
+
require('../modules/es.date.set-year');
|
|
53
|
+
require('../modules/es.date.to-gmt-string');
|
|
51
54
|
require('../modules/es.date.to-iso-string');
|
|
52
55
|
require('../modules/es.date.to-json');
|
|
53
56
|
require('../modules/es.date.to-primitive');
|
|
54
57
|
require('../modules/es.date.to-string');
|
|
58
|
+
require('../modules/es.escape');
|
|
55
59
|
require('../modules/es.function.bind');
|
|
56
60
|
require('../modules/es.function.has-instance');
|
|
57
61
|
require('../modules/es.function.name');
|
|
@@ -135,6 +139,7 @@ require('../modules/es.reflect.set');
|
|
|
135
139
|
require('../modules/es.reflect.set-prototype-of');
|
|
136
140
|
require('../modules/es.reflect.to-string-tag');
|
|
137
141
|
require('../modules/es.regexp.constructor');
|
|
142
|
+
require('../modules/es.regexp.dot-all');
|
|
138
143
|
require('../modules/es.regexp.exec');
|
|
139
144
|
require('../modules/es.regexp.flags');
|
|
140
145
|
require('../modules/es.regexp.sticky');
|
|
@@ -157,6 +162,7 @@ require('../modules/es.string.replace-all');
|
|
|
157
162
|
require('../modules/es.string.search');
|
|
158
163
|
require('../modules/es.string.split');
|
|
159
164
|
require('../modules/es.string.starts-with');
|
|
165
|
+
require('../modules/es.string.substr');
|
|
160
166
|
require('../modules/es.string.trim');
|
|
161
167
|
require('../modules/es.string.trim-end');
|
|
162
168
|
require('../modules/es.string.trim-start');
|
|
@@ -207,6 +213,7 @@ require('../modules/es.typed-array.sort');
|
|
|
207
213
|
require('../modules/es.typed-array.subarray');
|
|
208
214
|
require('../modules/es.typed-array.to-locale-string');
|
|
209
215
|
require('../modules/es.typed-array.to-string');
|
|
216
|
+
require('../modules/es.unescape');
|
|
210
217
|
require('../modules/es.weak-map');
|
|
211
218
|
require('../modules/es.weak-set');
|
|
212
219
|
|
package/es/map/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
require('../../modules/es.array.iterator');
|
|
1
2
|
require('../../modules/es.map');
|
|
2
3
|
require('../../modules/es.object.to-string');
|
|
3
4
|
require('../../modules/es.string.iterator');
|
|
4
|
-
require('../../modules/web.dom-collections.iterator');
|
|
5
5
|
var path = require('../../internals/path');
|
|
6
6
|
|
|
7
7
|
module.exports = path.Map;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
'use strict';
|
|
2
|
+
require('../../modules/es.array.iterator');
|
|
3
|
+
require('../../modules/es.object.to-string');
|
|
2
4
|
require('../../modules/es.promise');
|
|
3
5
|
require('../../modules/es.promise.all-settled');
|
|
4
6
|
require('../../modules/es.string.iterator');
|
|
5
|
-
require('../../modules/web.dom-collections.iterator');
|
|
6
7
|
var path = require('../../internals/path');
|
|
7
8
|
|
|
8
9
|
var Promise = path.Promise;
|
package/es/promise/any.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
require('../../modules/es.aggregate-error');
|
|
3
|
+
require('../../modules/es.array.iterator');
|
|
4
|
+
require('../../modules/es.object.to-string');
|
|
3
5
|
require('../../modules/es.promise');
|
|
4
6
|
require('../../modules/es.promise.any');
|
|
5
7
|
require('../../modules/es.string.iterator');
|
|
6
|
-
require('../../modules/web.dom-collections.iterator');
|
|
7
8
|
var path = require('../../internals/path');
|
|
8
9
|
|
|
9
10
|
var Promise = path.Promise;
|
package/es/promise/finally.js
CHANGED
package/es/promise/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
require('../../modules/es.aggregate-error');
|
|
2
|
+
require('../../modules/es.array.iterator');
|
|
2
3
|
require('../../modules/es.object.to-string');
|
|
3
4
|
require('../../modules/es.promise');
|
|
4
5
|
require('../../modules/es.promise.all-settled');
|
|
5
6
|
require('../../modules/es.promise.any');
|
|
6
7
|
require('../../modules/es.promise.finally');
|
|
7
8
|
require('../../modules/es.string.iterator');
|
|
8
|
-
require('../../modules/web.dom-collections.iterator');
|
|
9
9
|
var path = require('../../internals/path');
|
|
10
10
|
|
|
11
11
|
module.exports = path.Promise;
|
package/es/reflect/index.js
CHANGED
package/es/regexp/constructor.js
CHANGED
package/es/regexp/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
require('../../modules/es.regexp.constructor');
|
|
2
2
|
require('../../modules/es.regexp.to-string');
|
|
3
|
+
require('../../modules/es.regexp.dot-all');
|
|
3
4
|
require('../../modules/es.regexp.exec');
|
|
4
5
|
require('../../modules/es.regexp.flags');
|
|
5
6
|
require('../../modules/es.regexp.sticky');
|
package/es/regexp/match.js
CHANGED
package/es/regexp/replace.js
CHANGED
package/es/regexp/search.js
CHANGED
package/es/regexp/split.js
CHANGED
package/es/regexp/sticky.js
CHANGED
package/es/set/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
require('../../modules/es.
|
|
1
|
+
require('../../modules/es.array.iterator');
|
|
2
2
|
require('../../modules/es.object.to-string');
|
|
3
|
+
require('../../modules/es.set');
|
|
3
4
|
require('../../modules/es.string.iterator');
|
|
4
|
-
require('../../modules/web.dom-collections.iterator');
|
|
5
5
|
var path = require('../../internals/path');
|
|
6
6
|
|
|
7
7
|
module.exports = path.Set;
|
package/es/string/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
require('../../modules/es.object.to-string');
|
|
1
2
|
require('../../modules/es.regexp.exec');
|
|
2
3
|
require('../../modules/es.string.from-code-point');
|
|
3
4
|
require('../../modules/es.string.raw');
|
|
@@ -14,6 +15,7 @@ require('../../modules/es.string.replace-all');
|
|
|
14
15
|
require('../../modules/es.string.search');
|
|
15
16
|
require('../../modules/es.string.split');
|
|
16
17
|
require('../../modules/es.string.starts-with');
|
|
18
|
+
require('../../modules/es.string.substr');
|
|
17
19
|
require('../../modules/es.string.trim');
|
|
18
20
|
require('../../modules/es.string.trim-start');
|
|
19
21
|
require('../../modules/es.string.trim-end');
|
package/es/string/iterator.js
CHANGED
package/es/string/match-all.js
CHANGED
package/es/string/replace-all.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
require('../../../modules/es.object.to-string');
|
|
2
|
+
require('../../../modules/es.regexp.exec');
|
|
1
3
|
require('../../../modules/es.string.code-point-at');
|
|
2
4
|
require('../../../modules/es.string.ends-with');
|
|
3
5
|
require('../../../modules/es.string.includes');
|
|
@@ -11,6 +13,7 @@ require('../../../modules/es.string.replace-all');
|
|
|
11
13
|
require('../../../modules/es.string.search');
|
|
12
14
|
require('../../../modules/es.string.split');
|
|
13
15
|
require('../../../modules/es.string.starts-with');
|
|
16
|
+
require('../../../modules/es.string.substr');
|
|
14
17
|
require('../../../modules/es.string.trim');
|
|
15
18
|
require('../../../modules/es.string.trim-start');
|
|
16
19
|
require('../../../modules/es.string.trim-end');
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
require('../../modules/es.symbol.is-concat-spreadable');
|
|
2
1
|
require('../../modules/es.array.concat');
|
|
2
|
+
require('../../modules/es.symbol.is-concat-spreadable');
|
|
3
3
|
var WrappedWellKnownSymbolModule = require('../../internals/well-known-symbol-wrapped');
|
|
4
4
|
|
|
5
5
|
module.exports = WrappedWellKnownSymbolModule.f('isConcatSpreadable');
|
package/es/symbol/iterator.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
require('../../modules/es.
|
|
1
|
+
require('../../modules/es.array.iterator');
|
|
2
|
+
require('../../modules/es.object.to-string');
|
|
2
3
|
require('../../modules/es.string.iterator');
|
|
3
|
-
require('../../modules/
|
|
4
|
+
require('../../modules/es.symbol.iterator');
|
|
4
5
|
var WrappedWellKnownSymbolModule = require('../../internals/well-known-symbol-wrapped');
|
|
5
6
|
|
|
6
7
|
module.exports = WrappedWellKnownSymbolModule.f('iterator');
|
package/es/symbol/match-all.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
require('../../modules/es.object.to-string');
|
|
2
|
+
require('../../modules/es.regexp.exec');
|
|
1
3
|
require('../../modules/es.symbol.match-all');
|
|
2
4
|
require('../../modules/es.string.match-all');
|
|
3
5
|
var WrappedWellKnownSymbolModule = require('../../internals/well-known-symbol-wrapped');
|
package/es/symbol/match.js
CHANGED
package/es/symbol/replace.js
CHANGED
package/es/symbol/search.js
CHANGED
package/es/symbol/split.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
require('../../modules/es.symbol.to-string-tag');
|
|
2
|
-
require('../../modules/es.object.to-string');
|
|
3
1
|
require('../../modules/es.json.to-string-tag');
|
|
4
2
|
require('../../modules/es.math.to-string-tag');
|
|
3
|
+
require('../../modules/es.object.to-string');
|
|
5
4
|
require('../../modules/es.reflect.to-string-tag');
|
|
5
|
+
require('../../modules/es.symbol.to-string-tag');
|
|
6
6
|
var WrappedWellKnownSymbolModule = require('../../internals/well-known-symbol-wrapped');
|
|
7
7
|
|
|
8
8
|
module.exports = WrappedWellKnownSymbolModule.f('toStringTag');
|
package/es/typed-array/keys.js
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
require('../../modules/es.object.to-string');
|
|
2
|
+
require('../../modules/es.string.iterator');
|
|
1
3
|
require('../../modules/es.typed-array.from');
|
|
2
4
|
require('../../modules/es.typed-array.of');
|
|
3
5
|
require('../../modules/es.typed-array.copy-within');
|
|
@@ -23,4 +25,3 @@ require('../../modules/es.typed-array.subarray');
|
|
|
23
25
|
require('../../modules/es.typed-array.to-locale-string');
|
|
24
26
|
require('../../modules/es.typed-array.to-string');
|
|
25
27
|
require('../../modules/es.typed-array.iterator');
|
|
26
|
-
require('../../modules/es.object.to-string');
|
package/es/typed-array/values.js
CHANGED
package/es/unescape.js
ADDED
package/es/weak-map/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
require('../../modules/es.array.iterator');
|
|
1
2
|
require('../../modules/es.object.to-string');
|
|
2
3
|
require('../../modules/es.weak-map');
|
|
3
|
-
require('../../modules/web.dom-collections.iterator');
|
|
4
4
|
var path = require('../../internals/path');
|
|
5
5
|
|
|
6
6
|
module.exports = path.WeakMap;
|
package/es/weak-set/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
require('../../modules/es.array.iterator');
|
|
1
2
|
require('../../modules/es.object.to-string');
|
|
2
3
|
require('../../modules/es.weak-set');
|
|
3
|
-
require('../../modules/web.dom-collections.iterator');
|
|
4
4
|
var path = require('../../internals/path');
|
|
5
5
|
|
|
6
6
|
module.exports = path.WeakSet;
|
package/features/array/index.js
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
var parent = require('../../es/array');
|
|
2
2
|
require('../../modules/es.map');
|
|
3
3
|
require('../../modules/esnext.array.at');
|
|
4
|
+
// TODO: Remove from `core-js@4`
|
|
4
5
|
require('../../modules/esnext.array.filter-out');
|
|
6
|
+
require('../../modules/esnext.array.filter-reject');
|
|
5
7
|
require('../../modules/esnext.array.find-last');
|
|
6
8
|
require('../../modules/esnext.array.find-last-index');
|
|
9
|
+
require('../../modules/esnext.array.group-by');
|
|
7
10
|
require('../../modules/esnext.array.is-template-object');
|
|
8
11
|
require('../../modules/esnext.array.last-item');
|
|
9
12
|
require('../../modules/esnext.array.last-index');
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
var parent = require('../../../es/array/virtual');
|
|
2
2
|
require('../../../modules/es.map');
|
|
3
3
|
require('../../../modules/esnext.array.at');
|
|
4
|
+
// TODO: Remove from `core-js@4`
|
|
4
5
|
require('../../../modules/esnext.array.filter-out');
|
|
6
|
+
require('../../../modules/esnext.array.filter-reject');
|
|
5
7
|
require('../../../modules/esnext.array.find-last');
|
|
6
8
|
require('../../../modules/esnext.array.find-last-index');
|
|
9
|
+
require('../../../modules/esnext.array.group-by');
|
|
7
10
|
require('../../../modules/esnext.array.unique-by');
|
|
8
11
|
|
|
9
12
|
module.exports = parent;
|