(strategy)
| 12045 | return highWaterMark; |
| 12046 | } |
| 12047 | function ExtractSizeAlgorithm(strategy) { |
| 12048 | const { size } = strategy; |
| 12049 | if (!size) { |
| 12050 | return () => 1; |
| 12051 | } |
| 12052 | return size; |
| 12053 | } |
| 12054 | function convertQueuingStrategy(init, context) { |
| 12055 | assertDictionary(init, context); |
| 12056 | const highWaterMark = init === null || init === void 0 ? void 0 : init.highWaterMark; |
no outgoing calls
no test coverage detected
searching dependent graphs…