(fn, original, context)
| 13884 | return (controller) => promiseCall(fn, original, [controller]); |
| 13885 | } |
| 13886 | function convertUnderlyingSourceStartCallback(fn, original, context) { |
| 13887 | assertFunction(fn, context); |
| 13888 | return (controller) => reflectCall(fn, original, [controller]); |
| 13889 | } |
| 13890 | function convertReadableStreamType(type2, context) { |
| 13891 | type2 = `${type2}`; |
| 13892 | if (type2 !== "bytes") { |
no test coverage detected
searching dependent graphs…