* Whether or not the readable stream is locked to a ReadableStreamDefaultReader | reader.
()
| 13956 | * Whether or not the readable stream is locked to a {@link ReadableStreamDefaultReader | reader}. |
| 13957 | */ |
| 13958 | get locked() { |
| 13959 | if (!IsReadableStream(this)) { |
| 13960 | throw streamBrandCheckException$1("locked"); |
| 13961 | } |
| 13962 | return IsReadableStreamLocked(this); |
| 13963 | } |
| 13964 | /** |
| 13965 | * Cancels the stream, signaling a loss of interest in the stream by a consumer. |
| 13966 | * |
nothing calls this directly
no test coverage detected