core-js-bundle 3.24.0 → 3.24.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
- * core-js 3.24.0
2
+ * core-js 3.24.1
3
3
  * © 2014-2022 Denis Pushkarev (zloirock.ru)
4
- * license: https://github.com/zloirock/core-js/blob/v3.24.0/LICENSE
4
+ * license: https://github.com/zloirock/core-js/blob/v3.24.1/LICENSE
5
5
  * source: https://github.com/zloirock/core-js
6
6
  */
7
7
  !function (undefined) { 'use strict'; /******/ (function(modules) { // webpackBootstrap
@@ -1330,10 +1330,10 @@ var store = __webpack_require__(35);
1330
1330
  (module.exports = function (key, value) {
1331
1331
  return store[key] || (store[key] = value !== undefined ? value : {});
1332
1332
  })('versions', []).push({
1333
- version: '3.24.0',
1333
+ version: '3.24.1',
1334
1334
  mode: IS_PURE ? 'pure' : 'global',
1335
1335
  copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
1336
- license: 'https://github.com/zloirock/core-js/blob/v3.24.0/LICENSE',
1336
+ license: 'https://github.com/zloirock/core-js/blob/v3.24.1/LICENSE',
1337
1337
  source: 'https://github.com/zloirock/core-js'
1338
1338
  });
1339
1339
 
@@ -9705,7 +9705,7 @@ var FORCED_PROMISE_CONSTRUCTOR = isForced('Promise', function () {
9705
9705
  // We can't use @@species feature detection in V8 since it causes
9706
9706
  // deoptimization and performance degradation
9707
9707
  // https://github.com/zloirock/core-js/issues/679
9708
- if (V8_VERSION < 51 || !/native code/.test(PROMISE_CONSTRUCTOR_SOURCE)) {
9708
+ if (!V8_VERSION || V8_VERSION < 51 || !/native code/.test(PROMISE_CONSTRUCTOR_SOURCE)) {
9709
9709
  // Detect correctness of subclassing with @@species support
9710
9710
  var promise = new NativePromiseConstructor(function (resolve) { resolve(1); });
9711
9711
  var FakePromise = function (exec) {
@@ -9728,9 +9728,14 @@ module.exports = {
9728
9728
 
9729
9729
  /***/ }),
9730
9730
  /* 320 */
9731
- /***/ (function(module, exports) {
9731
+ /***/ (function(module, exports, __webpack_require__) {
9732
+
9733
+ var IS_DENO = __webpack_require__(321);
9734
+ var IS_NODE = __webpack_require__(174);
9732
9735
 
9733
- module.exports = typeof window == 'object' && typeof Deno != 'object';
9736
+ module.exports = !IS_DENO && !IS_NODE
9737
+ && typeof window == 'object'
9738
+ && typeof document == 'object';
9734
9739
 
9735
9740
 
9736
9741
  /***/ }),