0
GGGiovanny Gongora
Indents each line in the provided string.
0 Comments
const indentString = (str: string, count: number, indent = ' ') => str.replace(/^/gm, indent.repeat(count));