@whatwg-node/fetch
Advanced tools
Comparing version 0.6.4 to 0.6.5
# @whatwg-node/fetch | ||
## 0.6.5 | ||
### Patch Changes | ||
- [`63c96f5`](https://github.com/ardatan/whatwg-node/commit/63c96f5ad14bbc56ccccb95def3447b4107f6013) | ||
Thanks [@ardatan](https://github.com/ardatan)! - Do not add ponyfills for Bun | ||
## 0.6.4 | ||
@@ -4,0 +11,0 @@ |
@@ -10,2 +10,7 @@ module.exports = function createNodePonyfill(opts = {}) { | ||
// Bun already has a Fetch API | ||
if (process.versions.bun) { | ||
return globalThis; | ||
} | ||
const newNodeFetch = require('@whatwg-node/node-fetch'); | ||
@@ -12,0 +17,0 @@ |
{ | ||
"name": "@whatwg-node/fetch", | ||
"version": "0.6.4", | ||
"version": "0.6.5", | ||
"description": "Cross Platform Smart Fetch Ponyfill", | ||
@@ -5,0 +5,0 @@ "repository": { |
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
23224
223