UNPKG

succulent

Version:

Powerful and easy runtime type checking

8 lines 261 B
export function indent(str, level = 2) { const indentation = typeof level === "number" ? " ".repeat(level) : level; return str .split("\n") .map((line) => `${indentation}${line}`) .join("\n"); } //# sourceMappingURL=indent.js.map