UNPKG

@n0safe/indirectus

Version:
8 lines 292 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.indent = indent; function indent(context, value, size) { const indent = new Array(size + 1).join(" "); return `${indent}${value.split("\n").join(`\n${indent}`)}`; } //# sourceMappingURL=indent.js.map