"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Indents each line of text with a tab character.
*
* @param text Text to indent.
* @returns The indented text.
*/exports.indent = (text) =>` ${text.replace(/\n/g, "\n ")}`;
//# sourceMappingURL=text.js.map