MCPcopy Index your code
hub / github.com/Effect-TS/effect / textSpaces

Function textSpaces

packages/printer/src/internal/doc.ts:971–977  ·  view source on GitHub ↗
(n: number)

Source from the content-addressed store, hash-verified

969
970/** @internal */
971export const textSpaces = (n: number): string => {
972 let s = ""
973 for (let i = 0; i < n; i++) {
974 s = s += " "
975 }
976 return s
977}

Callers 1

spacesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected