"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.indent = indent;
/**
* Shifts each line of the text by two spaces.
*/functionindent(text) {
return text.trimEnd().replace(/^/gm, " ");
}
//# sourceMappingURL=indent.js.map