(x5)
| 13286 | }); |
| 13287 | } |
| 13288 | function IsReadableStreamDefaultController(x5) { |
| 13289 | if (!typeIsObject(x5)) { |
| 13290 | return false; |
| 13291 | } |
| 13292 | if (!Object.prototype.hasOwnProperty.call(x5, "_controlledReadableStream")) { |
| 13293 | return false; |
| 13294 | } |
| 13295 | return x5 instanceof ReadableStreamDefaultController2; |
| 13296 | } |
| 13297 | function ReadableStreamDefaultControllerCallPullIfNeeded(controller) { |
| 13298 | const shouldPull = ReadableStreamDefaultControllerShouldCallPull(controller); |
| 13299 | if (!shouldPull) { |
no test coverage detected
searching dependent graphs…