(s: string, identation = 2)
| 7 | } |
| 8 | |
| 9 | export function ident(s: string, identation = 2): string { |
| 10 | const tab = " ".repeat(identation); |
| 11 | |
| 12 | return s |
| 13 | .split("\n") |
| 14 | .map((v) => tab + v) |
| 15 | .join("\n"); |
| 16 | } |
no outgoing calls
no test coverage detected