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

@whatwg-node/fetch

Package Overview
Dependencies
Maintainers
1
Versions
475
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@whatwg-node/fetch - npm Package Compare versions

Comparing version 0.6.3-alpha-20230117084928-a052439 to 0.6.3-alpha-20230117095738-14df726

4

CHANGELOG.md
# @whatwg-node/fetch
## 0.6.3-alpha-20230117084928-a052439
## 0.6.3-alpha-20230117095738-14df726

@@ -20,3 +20,3 @@ ### Patch Changes

- Updated dependencies [[`f08c48b`](https://github.com/ardatan/whatwg-node/commit/f08c48be067c76cd82e969cd8a7406a0b3b5df5f)]:
- @whatwg-node/node-fetch@0.0.1-alpha-20230117084928-a052439
- @whatwg-node/node-fetch@0.0.1-alpha-20230117095738-14df726

@@ -23,0 +23,0 @@ ## 0.6.2

@@ -40,3 +40,2 @@ module.exports = function createNodePonyfill(opts = {}) {

ponyfills.TextDecoder = newNodeFetch.TextDecoder;
ponyfills.AbortError = newNodeFetch.AbortError;
ponyfills.AbortSignal = newNodeFetch.AbortSignal;

@@ -43,0 +42,0 @@

@@ -6,2 +6,3 @@ const fetch = globalThis.fetch;

const FormData = globalThis.FormData;
const AbortSignal = globalThis.AbortSignal;
const AbortController = globalThis.AbortController;

@@ -26,2 +27,3 @@ const ReadableStream = globalThis.ReadableStream;

FormData,
AbortSignal,
AbortController,

@@ -28,0 +30,0 @@ ReadableStream,

@@ -6,2 +6,3 @@ module.exports.fetch = globalThis.fetch; // To enable: import {fetch} from 'cross-fetch'

module.exports.FormData = globalThis.FormData;
module.exports.AbortSignal = globalThis.AbortSignal;
module.exports.AbortController = globalThis.AbortController;

@@ -8,0 +9,0 @@ module.exports.ReadableStream = globalThis.ReadableStream;

@@ -9,2 +9,3 @@ /// <reference lib="dom" />

declare const _FormData: typeof FormData;
declare const _AbortSignal: typeof AbortSignal;
declare const _AbortController: typeof AbortController;

@@ -28,2 +29,3 @@ declare const _ReadableStream: typeof ReadableStream;

export const FormData: typeof _FormData;
export const AbortSignal: typeof _AbortSignal;
export const AbortController: typeof _AbortController;

@@ -62,2 +64,3 @@ export const ReadableStream: typeof _ReadableStream;

FormData: typeof _FormData,
AbortSignal: typeof _AbortSignal,
AbortController: typeof _AbortController,

@@ -64,0 +67,0 @@ ReadableStream: typeof _ReadableStream,

@@ -10,2 +10,3 @@

module.exports.FormData = ponyfills.FormData;
module.exports.AbortSignal = ponyfills.AbortSignal;
module.exports.AbortController = ponyfills.AbortController;

@@ -12,0 +13,0 @@ module.exports.ReadableStream = ponyfills.ReadableStream;

{
"name": "@whatwg-node/fetch",
"version": "0.6.3-alpha-20230117084928-a052439",
"version": "0.6.3-alpha-20230117095738-14df726",
"description": "Cross Platform Smart Fetch Ponyfill",

@@ -22,3 +22,3 @@ "author": "Arda TANRIKULU <ardatanrikulu@gmail.com>",

"@peculiar/webcrypto": "^1.4.0",
"@whatwg-node/node-fetch": "0.0.1-alpha-20230117084928-a052439",
"@whatwg-node/node-fetch": "0.0.1-alpha-20230117095738-14df726",
"busboy": "^1.6.0",

@@ -25,0 +25,0 @@ "urlpattern-polyfill": "^6.0.2",

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