/
1Rrd0
/
4laba
Обзор
Документация
Войти
/
1Rrd0
/
4laba
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/simple-update-notifier/src/borderedText.ts
12 строк
371 B
dima
add
18 дек 2025, 16:20
18 дек 2025, 16:20
b198726
Код
Авторство
О чём код?
const borderedText = (text: string) => { const lines = text.split('\n'); const width = Math.max(...lines.map((l) => l.length)); const res = [`┌${'─'.repeat(width + 2)}┐`]; for (const line of lines) { res.push(`│ ${line.padEnd(width)} │`); } res.push(`└${'─'.repeat(width + 2)}┘`); return res.join('\n'); }; export default borderedText;