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

Function writeStdOut

cli/console.ts:38–39  ·  view source on GitHub ↗
(text: string, indentCount: number = 0)

Source from the content-addressed store, hash-verified

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) =>
41 write(process.stderr, text, indentCount);
42

Callers 10

promptFunction · 0.85
printFunction · 0.85
printSuccessFunction · 0.85
printInitResultFunction · 0.85
printInitCredsResultFunction · 0.85
printCompiledGraphFunction · 0.85
printTestResultFunction · 0.85
printExecutionGraphFunction · 0.85
printExecutedActionFunction · 0.85
printFormatFilesResultFunction · 0.85

Calls 1

writeFunction · 0.85

Tested by

no test coverage detected