Socket
Socket
Sign inDemoInstall

core-js-pure

Package Overview
Dependencies
0
Maintainers
1
Versions
151
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.24.0 to 3.24.1

7

internals/engine-is-browser.js

@@ -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';

2

internals/promise-constructor-detection.js

@@ -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-pure",
"description": "Standard library",
"version": "3.24.0",
"version": "3.24.1",
"repository": {

@@ -6,0 +6,0 @@ "type": "git",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc