Lines Matching refs:kHandle
34 const kHandle = Symbol('kHandle');
45 return typeof value?.[kHandle] === 'object' &&
50 return typeof value?.[kHandle] === 'object' &&
58 this[kHandle] = new TextEncoder();
87 const value = this[kHandle].encode(finalChunk);
107 return this[kHandle].encoding;
134 encoding: this[kHandle].encoding,
151 this[kHandle] = new TextDecoder(encoding, options);
154 const value = this[kHandle].decode(chunk, { stream: true });
159 const value = this[kHandle].decode();
174 return this[kHandle].encoding;
184 return this[kHandle].fatal;
194 return this[kHandle].ignoreBOM;
221 encoding: this[kHandle].encoding,
222 fatal: this[kHandle].fatal,
223 ignoreBOM: this[kHandle].ignoreBOM,