* @returns {ReadableStream}
()
| 321 | * @returns {ReadableStream} |
| 322 | */ |
| 323 | stream() { |
| 324 | if (!isBlob(this)) |
| 325 | throw new ERR_INVALID_THIS('Blob'); |
| 326 | return createBlobReaderStream(this[kHandle].getReader()); |
| 327 | } |
| 328 | } |
| 329 | |
| 330 | function TransferableBlob(handle, length, type = '') { |
nothing calls this directly
no test coverage detected