(options)
| 14196 | setFunctionName(byteLengthSizeFunction, "size"); |
| 14197 | class ByteLengthQueuingStrategy2 { |
| 14198 | constructor(options) { |
| 14199 | assertRequiredArgument(options, 1, "ByteLengthQueuingStrategy"); |
| 14200 | options = convertQueuingStrategyInit(options, "First parameter"); |
| 14201 | this._byteLengthQueuingStrategyHighWaterMark = options.highWaterMark; |
| 14202 | } |
| 14203 | /** |
| 14204 | * Returns the high water mark provided to the constructor. |
| 14205 | */ |
nothing calls this directly
no test coverage detected