UNPKG

@nesvet/n

Version:
7 lines 260 B
export function indent(string, indentation = "\t", times = 1) { if (!string) return string; const prefix = indentation.repeat(times); return string.split("\n").map(line => `${prefix}${line}`).join("\n"); } //# sourceMappingURL=indent.js.map