@awesome-fe/translate
Version:
Translation utils
21 lines • 610 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.pad = void 0;
var lineFeed = '\n';
var space = ' ';
var tabSize = 4;
// Pad `value` with `level * tabSize` spaces. Respects lines. Ignores empty
// lines.
function pad(value, level) {
var values = value.split(lineFeed);
var index = values.length;
var padding = space.repeat(level * tabSize);
while (index--) {
if (values[index].length !== 0) {
values[index] = padding + values[index];
}
}
return values.join(lineFeed);
}
exports.pad = pad;
//# sourceMappingURL=pad.js.map