MCPcopy Index your code
hub / github.com/nodejs/node / createReadableByteStream

Function createReadableByteStream

lib/internal/webstreams/readablestream.js:1369–1375  ·  view source on GitHub ↗
(start, pull, cancel)

Source from the content-addressed store, hash-verified

1367ObjectSetPrototypeOf(InternalReadableByteStream, ReadableStream);
1368
1369function createReadableByteStream(start, pull, cancel) {
1370 const stream = new InternalReadableByteStream(start, pull, cancel);
1371
1372 // For spec compliance the InternalReadableByteStream must be a ReadableStream
1373 stream.constructor = ReadableStream;
1374 return stream;
1375}
1376
1377const isReadableStream =
1378 isBrandCheck('ReadableStream');

Callers 1

readableByteStreamTeeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…