(x5)
| 14285 | return new TypeError(`CountQueuingStrategy.prototype.${name} can only be used on a CountQueuingStrategy`); |
| 14286 | } |
| 14287 | function IsCountQueuingStrategy(x5) { |
| 14288 | if (!typeIsObject(x5)) { |
| 14289 | return false; |
| 14290 | } |
| 14291 | if (!Object.prototype.hasOwnProperty.call(x5, "_countQueuingStrategyHighWaterMark")) { |
| 14292 | return false; |
| 14293 | } |
| 14294 | return x5 instanceof CountQueuingStrategy2; |
| 14295 | } |
| 14296 | function convertTransformer(original, context) { |
| 14297 | assertDictionary(original, context); |
| 14298 | const cancel = original === null || original === void 0 ? void 0 : original.cancel; |
no test coverage detected