UNPKG

@the-little-books/little

Version:

11 lines 310 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.indent = void 0; function indent(text, indentation = " ") { return text .split("\n") .map((line) => indentation + line) .join("\n"); } exports.indent = indent; //# sourceMappingURL=indent.js.map