* Measures the size of `chunk` by returning the value of its `byteLength` property.
()
| 14213 | * Measures the size of `chunk` by returning the value of its `byteLength` property. |
| 14214 | */ |
| 14215 | get size() { |
| 14216 | if (!IsByteLengthQueuingStrategy(this)) { |
| 14217 | throw byteLengthBrandCheckException("size"); |
| 14218 | } |
| 14219 | return byteLengthSizeFunction; |
| 14220 | } |
| 14221 | } |
| 14222 | Object.defineProperties(ByteLengthQueuingStrategy2.prototype, { |
| 14223 | highWaterMark: { enumerable: true }, |
nothing calls this directly
no test coverage detected