mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-23 11:05:01 +01:00
7 lines
146 B
TypeScript
7 lines
146 B
TypeScript
export function indent(text: string, space = ' '): string {
|
|
return text
|
|
.split('\n')
|
|
.map((line) => space + line)
|
|
.join('\n');
|
|
}
|