UNPKG

@the-little-books/little

Version:

7 lines (6 loc) 165 B
export function indent(text: string, indentation: string = " "): string { return text .split("\n") .map((line) => indentation + line) .join("\n") }