core-js 3.44.0 → 3.45.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/actual/iterator/concat.js +21 -0
- package/actual/iterator/index.js +1 -0
- package/actual/map/get-or-insert-computed.js +6 -0
- package/actual/map/get-or-insert.js +6 -0
- package/actual/map/index.js +2 -0
- package/actual/math/index.js +0 -1
- package/actual/math/sum-precise.js +2 -3
- package/actual/typed-array/from-base64.js +3 -0
- package/actual/typed-array/from-hex.js +3 -0
- package/actual/typed-array/index.js +1 -1
- package/actual/typed-array/set-from-base64.js +3 -0
- package/actual/typed-array/set-from-hex.js +3 -0
- package/actual/typed-array/to-base64.js +3 -0
- package/actual/typed-array/to-hex.js +3 -0
- package/actual/weak-map/get-or-insert-computed.js +6 -0
- package/actual/weak-map/get-or-insert.js +6 -0
- package/actual/weak-map/index.js +2 -0
- package/es/index.js +7 -0
- package/es/math/index.js +2 -0
- package/es/math/sum-precise.js +6 -0
- package/es/typed-array/from-base64.js +2 -0
- package/es/typed-array/from-hex.js +2 -0
- package/es/typed-array/methods.js +6 -0
- package/es/typed-array/set-from-base64.js +2 -0
- package/es/typed-array/set-from-hex.js +2 -0
- package/es/typed-array/to-base64.js +2 -0
- package/es/typed-array/to-hex.js +2 -0
- package/full/index.js +7 -0
- package/full/iterator/concat.js +3 -19
- package/full/iterator/from.js +1 -0
- package/full/iterator/index.js +0 -1
- package/full/iterator/range.js +1 -0
- package/full/iterator/zip-keyed.js +1 -0
- package/full/iterator/zip.js +1 -0
- package/full/map/get-or-insert-computed.js +2 -4
- package/full/map/get-or-insert.js +2 -4
- package/full/weak-map/get-or-insert-computed.js +2 -4
- package/full/weak-map/get-or-insert.js +2 -4
- package/internals/shared-store.js +2 -2
- package/internals/uint8-from-base64.js +6 -5
- package/modules/es.math.sum-precise.js +151 -0
- package/modules/es.uint8-array.from-base64.js +29 -0
- package/modules/es.uint8-array.from-hex.js +13 -0
- package/modules/es.uint8-array.set-from-base64.js +37 -0
- package/modules/es.uint8-array.set-from-hex.js +19 -0
- package/modules/es.uint8-array.to-base64.js +60 -0
- package/modules/es.uint8-array.to-hex.js +34 -0
- package/modules/esnext.iterator.concat.js +1 -1
- package/modules/esnext.map.get-or-insert-computed.js +1 -1
- package/modules/esnext.map.get-or-insert.js +1 -1
- package/modules/esnext.math.sum-precise.js +2 -150
- package/modules/esnext.uint8-array.from-base64.js +2 -23
- package/modules/esnext.uint8-array.from-hex.js +2 -12
- package/modules/esnext.uint8-array.set-from-base64.js +2 -31
- package/modules/esnext.uint8-array.set-from-hex.js +2 -18
- package/modules/esnext.uint8-array.to-base64.js +2 -59
- package/modules/esnext.uint8-array.to-hex.js +2 -33
- package/modules/esnext.weak-map.get-or-insert-computed.js +1 -1
- package/modules/esnext.weak-map.get-or-insert.js +1 -1
- package/package.json +1 -1
- package/stable/index.js +7 -0
- package/stable/math/sum-precise.js +4 -0
- package/stable/typed-array/from-base64.js +4 -0
- package/stable/typed-array/from-hex.js +4 -0
- package/stable/typed-array/set-from-base64.js +4 -0
- package/stable/typed-array/set-from-hex.js +4 -0
- package/stable/typed-array/to-base64.js +4 -0
- package/stable/typed-array/to-hex.js +4 -0
- package/stage/2.7.js +1 -2
- package/stage/2.js +0 -1
- package/stage/3.js +2 -2
- package/stage/4.js +2 -0
package/stage/3.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
var parent = require('./4');
|
|
3
3
|
|
|
4
|
-
require('../proposals/array-buffer-base64');
|
|
5
4
|
require('../proposals/decorator-metadata-v2');
|
|
5
|
+
require('../proposals/iterator-sequencing');
|
|
6
6
|
require('../proposals/json-parse-with-source');
|
|
7
|
-
require('../proposals/
|
|
7
|
+
require('../proposals/map-upsert-v4');
|
|
8
8
|
// TODO: Obsolete versions, remove from `core-js@4`
|
|
9
9
|
require('../proposals/array-grouping-stage-3');
|
|
10
10
|
require('../proposals/array-grouping-stage-3-2');
|
package/stage/4.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
// TODO: Remove this entry from `core-js@4`
|
|
3
3
|
require('../proposals/accessible-object-hasownproperty');
|
|
4
|
+
require('../proposals/array-buffer-base64');
|
|
4
5
|
require('../proposals/array-buffer-transfer');
|
|
5
6
|
require('../proposals/array-find-from-last');
|
|
6
7
|
require('../proposals/array-from-async-stage-2');
|
|
@@ -12,6 +13,7 @@ require('../proposals/float16');
|
|
|
12
13
|
require('../proposals/global-this');
|
|
13
14
|
require('../proposals/is-error');
|
|
14
15
|
require('../proposals/iterator-helpers-stage-3-2');
|
|
16
|
+
require('../proposals/math-sum');
|
|
15
17
|
require('../proposals/promise-all-settled');
|
|
16
18
|
require('../proposals/promise-any');
|
|
17
19
|
require('../proposals/promise-try');
|