core-js-bundle 3.37.0 → 3.37.1
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 +7 -6
- package/minified.js +5 -5
- 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.37.
|
|
2
|
+
* core-js 3.37.1
|
|
3
3
|
* © 2014-2024 Denis Pushkarev (zloirock.ru)
|
|
4
|
-
* license: https://github.com/zloirock/core-js/blob/v3.37.
|
|
4
|
+
* license: https://github.com/zloirock/core-js/blob/v3.37.1/LICENSE
|
|
5
5
|
* source: https://github.com/zloirock/core-js
|
|
6
6
|
*/
|
|
7
7
|
!function (undefined) { 'use strict'; /******/ (function(modules) { // webpackBootstrap
|
|
@@ -1484,10 +1484,10 @@ var SHARED = '__core-js_shared__';
|
|
|
1484
1484
|
var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
|
|
1485
1485
|
|
|
1486
1486
|
(store.versions || (store.versions = [])).push({
|
|
1487
|
-
version: '3.37.
|
|
1487
|
+
version: '3.37.1',
|
|
1488
1488
|
mode: IS_PURE ? 'pure' : 'global',
|
|
1489
1489
|
copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
|
|
1490
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.37.
|
|
1490
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.37.1/LICENSE',
|
|
1491
1491
|
source: 'https://github.com/zloirock/core-js'
|
|
1492
1492
|
});
|
|
1493
1493
|
|
|
@@ -16741,7 +16741,7 @@ var WRONG_ARITY = !!NativeSuppressedError && NativeSuppressedError.length !== 3;
|
|
|
16741
16741
|
|
|
16742
16742
|
// https://github.com/oven-sh/bun/issues/9283
|
|
16743
16743
|
var EXTRA_ARGS_SUPPORT = !!NativeSuppressedError && fails(function () {
|
|
16744
|
-
return NativeSuppressedError(1, 2, 3, { cause: 4 }).cause === 4;
|
|
16744
|
+
return new NativeSuppressedError(1, 2, 3, { cause: 4 }).cause === 4;
|
|
16745
16745
|
});
|
|
16746
16746
|
|
|
16747
16747
|
var PATCH = WRONG_ARITY || EXTRA_ARGS_SUPPORT;
|
|
@@ -27272,12 +27272,13 @@ var $ = __webpack_require__(3);
|
|
|
27272
27272
|
var getBuiltIn = __webpack_require__(23);
|
|
27273
27273
|
var validateArgumentsLength = __webpack_require__(342);
|
|
27274
27274
|
var toString = __webpack_require__(68);
|
|
27275
|
+
var USE_NATIVE_URL = __webpack_require__(772);
|
|
27275
27276
|
|
|
27276
27277
|
var URL = getBuiltIn('URL');
|
|
27277
27278
|
|
|
27278
27279
|
// `URL.parse` method
|
|
27279
27280
|
// https://url.spec.whatwg.org/#dom-url-canparse
|
|
27280
|
-
$({ target: 'URL', stat: true }, {
|
|
27281
|
+
$({ target: 'URL', stat: true, forced: !USE_NATIVE_URL }, {
|
|
27281
27282
|
parse: function parse(url) {
|
|
27282
27283
|
var length = validateArgumentsLength(arguments.length, 1);
|
|
27283
27284
|
var urlString = toString(url);
|