MCPcopy Create free account
hub / github.com/ReviewStage/stage-cli / hasStringStdout

Function hasStringStdout

packages/cli/src/git.ts:162–166  ·  view source on GitHub ↗
(err: unknown)

Source from the content-addressed store, hash-verified

160}
161
162export function hasStringStdout(err: unknown): err is { stdout: string } {
163 return (
164 typeof err === "object" && err !== null && "stdout" in err && typeof err.stdout === "string"
165 );
166}
167
168export function getUntrackedDiff(files: string[]): string {
169 const patches: string[] = [];

Callers 2

getUntrackedDiffFunction · 0.85
buildUntrackedPatchFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected