* @readonly * @type {boolean}
()
| 331 | * @type {boolean} |
| 332 | */ |
| 333 | get locked() { |
| 334 | if (!isReadableStream(this)) |
| 335 | throw new ERR_INVALID_THIS('ReadableStream'); |
| 336 | return isReadableStreamLocked(this); |
| 337 | } |
| 338 | |
| 339 | static from(iterable) { |
| 340 | return readableStreamFromIterable(iterable); |
nothing calls this directly
no test coverage detected