|
1 | 1 | /**
|
2 |
| - * core-js 3.37.0 |
| 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.0/LICENSE |
| 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
|
@@ -1028,10 +1028,10 @@ var SHARED = '__core-js_shared__';
|
1028 | 1028 | var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
|
1029 | 1029 |
|
1030 | 1030 | (store.versions || (store.versions = [])).push({
|
1031 |
| - version: '3.37.0', |
| 1031 | + version: '3.37.1', |
1032 | 1032 | mode: IS_PURE ? 'pure' : 'global',
|
1033 | 1033 | copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
|
1034 |
| - license: 'https://github.com/zloirock/core-js/blob/v3.37.0/LICENSE', |
| 1034 | + license: 'https://github.com/zloirock/core-js/blob/v3.37.1/LICENSE', |
1035 | 1035 | source: 'https://github.com/zloirock/core-js'
|
1036 | 1036 | });
|
1037 | 1037 |
|
@@ -6388,7 +6388,7 @@ var WRONG_ARITY = !!NativeSuppressedError && NativeSuppressedError.length !== 3;
|
6388 | 6388 |
|
6389 | 6389 | // https://github.com/oven-sh/bun/issues/9283
|
6390 | 6390 | var EXTRA_ARGS_SUPPORT = !!NativeSuppressedError && fails(function () {
|
6391 |
| - return NativeSuppressedError(1, 2, 3, { cause: 4 }).cause === 4; |
| 6391 | + return new NativeSuppressedError(1, 2, 3, { cause: 4 }).cause === 4; |
6392 | 6392 | });
|
6393 | 6393 |
|
6394 | 6394 | var PATCH = WRONG_ARITY || EXTRA_ARGS_SUPPORT;
|
@@ -16123,12 +16123,13 @@ var $ = __webpack_require__(2);
|
16123 | 16123 | var getBuiltIn = __webpack_require__(22);
|
16124 | 16124 | var validateArgumentsLength = __webpack_require__(146);
|
16125 | 16125 | var toString = __webpack_require__(76);
|
| 16126 | +var USE_NATIVE_URL = __webpack_require__(472); |
16126 | 16127 |
|
16127 | 16128 | var URL = getBuiltIn('URL');
|
16128 | 16129 |
|
16129 | 16130 | // `URL.parse` method
|
16130 | 16131 | // https://url.spec.whatwg.org/#dom-url-canparse
|
16131 |
| -$({ target: 'URL', stat: true }, { |
| 16132 | +$({ target: 'URL', stat: true, forced: !USE_NATIVE_URL }, { |
16132 | 16133 | parse: function parse(url) {
|
16133 | 16134 | var length = validateArgumentsLength(arguments.length, 1);
|
16134 | 16135 | var urlString = toString(url);
|
|
0 commit comments