"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ind = ind;
function ind(numOfSpaces, str) {
const indentation = ' '.repeat(numOfSpaces);
return str.split('\n').map(line => line ? indentation + line : line).join('\n');
}