MCPcopy Create free account
hub / github.com/dataform-co/dataform / write

Function write

cli/console.ts:36–37  ·  view source on GitHub ↗
(stream: NodeJS.WriteStream, text: string, indentCount: number)

Source from the content-addressed store, hash-verified

34const calloutOutput = (text: string) => output(text, ansiColorCodes.cyan);
35
36const write = (stream: NodeJS.WriteStream, text: string, indentCount: number) =>
37 stream.write(`${" ".repeat(indentCount)}${text}\n`);
38const writeStdOut = (text: string, indentCount: number = 0) =>
39 write(process.stdout, text, indentCount);
40const writeStdErr = (text: string, indentCount: number = 0) =>

Callers 2

writeStdOutFunction · 0.85
writeStdErrFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected