@expressots/cli
Version:
Expressots CLI - modern, fast, lightweight nodejs web framework (@cli)
11 lines (10 loc) • 364 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.centerText = void 0;
function centerText(text) {
const terminalWidth = process.stdout.columns;
const padding = Math.floor((terminalWidth - text.length) / 2);
const centeredText = " ".repeat(padding) + text;
return centeredText;
}
exports.centerText = centerText;