Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

core-js-pure

Package Overview
Dependencies
Maintainers
1
Versions
154
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

core-js-pure - npm Package Compare versions

Comparing version 3.0.0-beta.10 to 3.0.0-beta.11

2

internals/shared.js

@@ -9,5 +9,5 @@ var global = require('../internals/global');

})('versions', []).push({
version: '3.0.0-beta.10',
version: '3.0.0-beta.11',
mode: require('../internals/is-pure') ? 'pure' : 'global',
copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
});

@@ -30,2 +30,3 @@ 'use strict';

var process = global.process;
var $fetch = global.fetch;
var versions = process && process.versions;

@@ -267,2 +268,10 @@ var v8 = versions && versions.v8 || '';

};
// wrap fetch result
if (!IS_PURE && typeof $fetch == 'function') $export({ global: true, forced: true }, {
// eslint-disable-next-line no-unused-vars
fetch: function fetch(input) {
return promiseResolve(PromiseConstructor, $fetch.apply(global, arguments));
}
});
}

@@ -269,0 +278,0 @@

{
"name": "core-js-pure",
"description": "Standard library",
"version": "3.0.0-beta.10",
"version": "3.0.0-beta.11",
"repository": {

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc