MCPcopy Index your code
hub / github.com/nodejs/node / [kInspect]

Method [kInspect]

lib/internal/webstreams/encoding.js:193–203  ·  view source on GitHub ↗
(depth, options)

Source from the content-addressed store, hash-verified

191 }
192
193 [kInspect](depth, options) {
194 if (this == null)
195 throw new ERR_INVALID_THIS('TextDecoderStream');
196 return customInspect(depth, options, 'TextDecoderStream', {
197 encoding: this.#handle.encoding,
198 fatal: this.#handle.fatal,
199 ignoreBOM: this.#handle.ignoreBOM,
200 readable: this.#transform.readable,
201 writable: this.#transform.writable,
202 });
203 }
204}
205
206ObjectDefineProperties(TextEncoderStream.prototype, {

Callers

nothing calls this directly

Calls 1

customInspectFunction · 0.70

Tested by

no test coverage detected