* @param {AsyncIterable|ReadableStream|Readable} stream * @returns {Promise }
(stream)
| 83 | * @returns {Promise<any>} |
| 84 | */ |
| 85 | async function json(stream) { |
| 86 | const str = await text(stream); |
| 87 | return JSONParse(str); |
| 88 | } |
| 89 | |
| 90 | module.exports = { |
| 91 | arrayBuffer, |
nothing calls this directly
no test coverage detected
searching dependent graphs…