MCPcopy Create free account
hub / github.com/TestSprite/testsprite-cli / pad

Function pad

src/commands/project.ts:585–588  ·  view source on GitHub ↗
(s: string, width: number)

Source from the content-addressed store, hash-verified

583}
584
585function pad(s: string, width: number): string {
586 if (s.length >= width) return s;
587 return s + ' '.repeat(width - s.length);
588}
589
590function renderUpdateText(r: CliUpdateProjectResponse): string {
591 return [

Callers 1

renderProjectListTextFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected