(x5)
| 11363 | return x5 instanceof ReadableByteStreamController2; |
| 11364 | } |
| 11365 | function IsReadableStreamBYOBRequest(x5) { |
| 11366 | if (!typeIsObject(x5)) { |
| 11367 | return false; |
| 11368 | } |
| 11369 | if (!Object.prototype.hasOwnProperty.call(x5, "_associatedReadableByteStreamController")) { |
| 11370 | return false; |
| 11371 | } |
| 11372 | return x5 instanceof ReadableStreamBYOBRequest2; |
| 11373 | } |
| 11374 | function ReadableByteStreamControllerCallPullIfNeeded(controller) { |
| 11375 | const shouldPull = ReadableByteStreamControllerShouldCallPull(controller); |
| 11376 | if (!shouldPull) { |
no test coverage detected
searching dependent graphs…