(options, context)
| 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; |
| 13900 | return { preventCancel: Boolean(preventCancel) }; |
| 13901 | } |
| 13902 | function convertPipeOptions(options, context) { |
| 13903 | assertDictionary(options, context); |
| 13904 | const preventAbort = options === null || options === void 0 ? void 0 : options.preventAbort; |
no test coverage detected
searching dependent graphs…