We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fetch.pipe()
1 parent 5ab71ce commit 7d89359Copy full SHA for 7d89359
docs/api.md
@@ -140,9 +140,11 @@ package.
140
141
```js
142
const resp = await fetch('https://medv.io')
143
+const json = await resp.json()
144
```
145
-We've attached a minor adjustment to the `fetch` API to make it more zx-friendly in pipe chains:
146
+For some cases, fetch `text()` or `json()` can produce extremely large output that exceeds the string size limit.
147
+Streams are just for that, so we've attached a minor adjustment to the `fetch` API to make it more pipe friendly.
148
149
150
const p1 = fetch('https://example.com').pipe($`cat`)
0 commit comments