core-js-pure
Advanced tools
Comparing version 3.0.0-beta.10 to 3.0.0-beta.11
@@ -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", |
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
407075
9537