MCPcopy Create free account
hub / github.com/CommandCodeAI/BaseAI / constructor

Method constructor

packages/core/src/common/stream.ts:398–401  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

396 textDecoder: any; // TextDecoder found in browsers; not typed to avoid pulling in either "dom" or "node" types.
397
398 constructor() {
399 this.buffer = [];
400 this.trailingCR = false;
401 }
402
403 decode(chunk: Bytes): string[] {
404 let text = this.decodeText(chunk);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected