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