UNPKG

@slightning/anything-to-string

Version:
10 lines (9 loc) 193 B
export function getIndentString(config) { const { indent } = config; if (typeof indent == "number") { return " ".repeat(indent); } else { return indent; } }