UNPKG

@slightning/anything-to-string

Version:
13 lines (12 loc) 306 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getIndentString = getIndentString; function getIndentString(config) { const { indent } = config; if (typeof indent == "number") { return " ".repeat(indent); } else { return indent; } }