@whatwg-node/node-fetch
Advanced tools
Comparing version 0.7.6 to 0.7.7-rc-20250110093600-48b5086ea3535f34641fd8559221fa26fe734251
@@ -159,2 +159,5 @@ "use strict"; | ||
return { | ||
[Symbol.asyncIterator]() { | ||
return this; | ||
}, | ||
next: () => iterator.next(), | ||
@@ -161,0 +164,0 @@ return: () => { |
@@ -156,2 +156,5 @@ import { Buffer } from 'node:buffer'; | ||
return { | ||
[Symbol.asyncIterator]() { | ||
return this; | ||
}, | ||
next: () => iterator.next(), | ||
@@ -158,0 +161,0 @@ return: () => { |
{ | ||
"name": "@whatwg-node/node-fetch", | ||
"version": "0.7.6", | ||
"version": "0.7.7-rc-20250110093600-48b5086ea3535f34641fd8559221fa26fe734251", | ||
"description": "Fetch API implementation for Node", | ||
@@ -5,0 +5,0 @@ "sideEffects": false, |
@@ -12,2 +12,3 @@ import { Readable } from 'node:stream'; | ||
[Symbol.asyncIterator](): { | ||
[Symbol.asyncIterator](): /*elided*/ any; | ||
next: () => Promise<IteratorResult<any, any>>; | ||
@@ -14,0 +15,0 @@ return: () => Promise<IteratorResult<any, any>>; |
Sorry, the diff of this file is not supported yet
223071
5650