Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 30x 30x 30x 24x 24x 24x 24x 24x 24x 30x 4x 4x 4x 4x 4x 4x 21x 21x 18x 21x 4x 4x 4x 4x 4x 15x 15x 12x 15x 4x 4x 1x 1x 1x 1x 4x 31x 31x 31x 31x 31x 31x 31x 31x 31x 11x 11x 11x 11x 11x 11x 11x 11x 11x 11x 11x 66x 66x 66x 60x 60x 60x 60x 60x 60x 66x 11x 11x 11x 11x 11x 11x 59x 59x 56x 59x 11x 11x 11x 11x 11x 51x 51x 48x 51x 11x 11x 3x 3x 3x 3x 11x 31x 31x 31x 31x 31x 31x 31x 31x 31x 31x | 'use strict'; const { ObjectDefineProperties, SymbolToStringTag, } = primordials; const { codes: { ERR_INVALID_THIS, ERR_MISSING_OPTION, }, } = require('internal/errors'); const { customInspectSymbol: kInspect, kEnumerableProperty, } = require('internal/util'); const { customInspect, isBrandCheck, kType, kState, } = require('internal/webstreams/util'); const { validateObject, } = require('internal/validators'); const isByteLengthQueuingStrategy = isBrandCheck('ByteLengthQueuingStrategy'); const isCountQueuingStrategy = isBrandCheck('CountQueuingStrategy'); /** * @callback QueuingStrategySize * @param {any} chunk * @returns {number} */ /** * @typedef {{ * highWaterMark : number, * size? : QueuingStrategySize, * }} QueuingStrategy */ // eslint-disable-next-line func-name-matching,func-style const byteSizeFunction = function size(chunk) { return chunk.byteLength; }; // eslint-disable-next-line func-name-matching,func-style const countSizeFunction = function size() { return 1; }; /** * @type {QueuingStrategy} */ class ByteLengthQueuingStrategy { [kType] = 'ByteLengthQueuingStrategy'; get [SymbolToStringTag]() { return this[kType]; } /** * @param {{ * highWaterMark : number * }} init */ constructor(init) { validateObject(init, 'init'); if (init.highWaterMark === undefined) throw new ERR_MISSING_OPTION('options.highWaterMark'); // The highWaterMark value is not checked until the strategy // is actually used, per the spec. this[kState] = { highWaterMark: +init.highWaterMark, }; } /** * @readonly * @type {number} */ get highWaterMark() { if (!isByteLengthQueuingStrategy(this)) throw new ERR_INVALID_THIS('ByteLengthQueuingStrategy'); return this[kState].highWaterMark; } /** * @type {QueuingStrategySize} */ get size() { if (!isByteLengthQueuingStrategy(this)) throw new ERR_INVALID_THIS('ByteLengthQueuingStrategy'); return byteSizeFunction; } [kInspect](depth, options) { return customInspect(depth, options, this[kType], { highWaterMark: this.highWaterMark, }); } } ObjectDefineProperties(ByteLengthQueuingStrategy.prototype, { highWaterMark: kEnumerableProperty, size: kEnumerableProperty, }); /** * @type {QueuingStrategy} */ class CountQueuingStrategy { [kType] = 'CountQueuingStrategy'; get [SymbolToStringTag]() { return this[kType]; } /** * @param {{ * highWaterMark : number * }} init */ constructor(init) { validateObject(init, 'init'); if (init.highWaterMark === undefined) throw new ERR_MISSING_OPTION('options.highWaterMark'); // The highWaterMark value is not checked until the strategy // is actually used, per the spec. this[kState] = { highWaterMark: +init.highWaterMark, }; } /** * @readonly * @type {number} */ get highWaterMark() { if (!isCountQueuingStrategy(this)) throw new ERR_INVALID_THIS('CountQueuingStrategy'); return this[kState].highWaterMark; } /** * @type {QueuingStrategySize} */ get size() { if (!isCountQueuingStrategy(this)) throw new ERR_INVALID_THIS('CountQueuingStrategy'); return countSizeFunction; } [kInspect](depth, options) { return customInspect(depth, options, this[kType], { highWaterMark: this.highWaterMark, }); } } ObjectDefineProperties(CountQueuingStrategy.prototype, { highWaterMark: kEnumerableProperty, size: kEnumerableProperty, }); module.exports = { ByteLengthQueuingStrategy, CountQueuingStrategy, }; |