"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.indentBy = indentBy;
function indentBy(tabNumber) {
return (str) => {
const indentation = '\t'.repeat(tabNumber);
return str
.split('\n')
.map((line) => `${indentation}${line}`)
.join('\n');
};
}