"use strict";Object.defineProperty(exports, "__esModule", {value: true});
function padding(message, before = 1, after = 1) {
return `${new Array(before).fill(" ").join("")}${message}${new Array(after).fill(" ").join("")}`;
}
exports.padding = padding;