Lines Matching refs:value
44 function isTextEncoderStream(value) {
45 return typeof value?.[kHandle] === 'object' &&
46 value?.[kType] === 'TextEncoderStream';
49 function isTextDecoderStream(value) {
50 return typeof value?.[kHandle] === 'object' &&
51 value?.[kType] === 'TextDecoderStream';
87 const value = this[kHandle].encode(finalChunk);
88 controller.enqueue(value);
154 const value = this[kHandle].decode(chunk, { stream: true });
155 if (value)
156 controller.enqueue(value);
159 const value = this[kHandle].decode();
160 if (value)
161 controller.enqueue(value);