(type2, context)
| 13888 | return (controller) => reflectCall(fn, original, [controller]); |
| 13889 | } |
| 13890 | function convertReadableStreamType(type2, context) { |
| 13891 | type2 = `${type2}`; |
| 13892 | if (type2 !== "bytes") { |
| 13893 | throw new TypeError(`${context} '${type2}' is not a valid enumeration value for ReadableStreamType`); |
| 13894 | } |
| 13895 | return type2; |
| 13896 | } |
| 13897 | function convertIteratorOptions(options, context) { |
| 13898 | assertDictionary(options, context); |
| 13899 | const preventCancel = options === null || options === void 0 ? void 0 : options.preventCancel; |
no outgoing calls
no test coverage detected
searching dependent graphs…