Comparing version 3.24.0 to 3.24.1
@@ -1,1 +0,6 @@ | ||
module.exports = typeof window == 'object' && typeof Deno != 'object'; | ||
var IS_DENO = require('../internals/engine-is-deno'); | ||
var IS_NODE = require('../internals/engine-is-node'); | ||
module.exports = !IS_DENO && !IS_NODE | ||
&& typeof window == 'object' | ||
&& typeof document == 'object'; |
@@ -29,3 +29,3 @@ var global = require('../internals/global'); | ||
// https://github.com/zloirock/core-js/issues/679 | ||
if (V8_VERSION < 51 || !/native code/.test(PROMISE_CONSTRUCTOR_SOURCE)) { | ||
if (!V8_VERSION || V8_VERSION < 51 || !/native code/.test(PROMISE_CONSTRUCTOR_SOURCE)) { | ||
// Detect correctness of subclassing with @@species support | ||
@@ -32,0 +32,0 @@ var promise = new NativePromiseConstructor(function (resolve) { resolve(1); }); |
@@ -7,7 +7,7 @@ var IS_PURE = require('../internals/is-pure'); | ||
})('versions', []).push({ | ||
version: '3.24.0', | ||
version: '3.24.1', | ||
mode: IS_PURE ? 'pure' : 'global', | ||
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)', | ||
license: 'https://github.com/zloirock/core-js/blob/v3.24.0/LICENSE', | ||
license: 'https://github.com/zloirock/core-js/blob/v3.24.1/LICENSE', | ||
source: 'https://github.com/zloirock/core-js' | ||
}); |
{ | ||
"name": "core-js", | ||
"description": "Standard library", | ||
"version": "3.24.0", | ||
"version": "3.24.1", | ||
"repository": { | ||
@@ -6,0 +6,0 @@ "type": "git", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1013599
23426