UNPKG

@clickup/pg-microsharding

Version:
7 lines (6 loc) 150 B
/** * Shifts each line of the text by two spaces. */ export function indent(text: string): string { return text.trimEnd().replace(/^/gm, " "); }