Skip to content

Commit 18d4676

Browse files
committed
🎉 feat: async resolve macro
1 parent 61beb3c commit 18d4676

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/universal/request.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,5 +202,6 @@ async function readableStreamToString(stream: ReadableStream) {
202202
const chunks = <Uint8Array[]>[]
203203
for await (const chunk of stream) chunks.push(chunk)
204204

205+
// @ts-ignore this is intentional, it works
205206
return Buffer.from(Buffer.concat(chunks)).toString()
206207
}

0 commit comments

Comments
 (0)