core-js-bundle 3.23.4 → 3.23.5
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/index.js +5 -5
- package/minified.js +4 -4
- package/minified.js.map +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* core-js 3.23.
|
|
2
|
+
* core-js 3.23.5
|
|
3
3
|
* © 2014-2022 Denis Pushkarev (zloirock.ru)
|
|
4
|
-
* license: https://github.com/zloirock/core-js/blob/v3.23.
|
|
4
|
+
* license: https://github.com/zloirock/core-js/blob/v3.23.5/LICENSE
|
|
5
5
|
* source: https://github.com/zloirock/core-js
|
|
6
6
|
*/
|
|
7
7
|
!function (undefined) { 'use strict'; /******/ (function(modules) { // webpackBootstrap
|
|
@@ -1328,10 +1328,10 @@ var store = __webpack_require__(35);
|
|
|
1328
1328
|
(module.exports = function (key, value) {
|
|
1329
1329
|
return store[key] || (store[key] = value !== undefined ? value : {});
|
|
1330
1330
|
})('versions', []).push({
|
|
1331
|
-
version: '3.23.
|
|
1331
|
+
version: '3.23.5',
|
|
1332
1332
|
mode: IS_PURE ? 'pure' : 'global',
|
|
1333
1333
|
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
|
|
1334
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.23.
|
|
1334
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.23.5/LICENSE',
|
|
1335
1335
|
source: 'https://github.com/zloirock/core-js'
|
|
1336
1336
|
});
|
|
1337
1337
|
|
|
@@ -20208,7 +20208,7 @@ var checkErrorsCloning = function (structuredCloneImplementation, $Error) {
|
|
|
20208
20208
|
return !fails(function () {
|
|
20209
20209
|
var error = new $Error();
|
|
20210
20210
|
var test = structuredCloneImplementation({ a: error, b: error });
|
|
20211
|
-
return !(test && test.a === test.b && test.a instanceof $Error && test.stack === error.stack);
|
|
20211
|
+
return !(test && test.a === test.b && test.a instanceof $Error && test.a.stack === error.stack);
|
|
20212
20212
|
});
|
|
20213
20213
|
};
|
|
20214
20214
|
|