robert2206 8ad867f7a5 commit inicial | 8 年之前 | |
---|---|---|
.. | ||
boxes.json | 8 年之前 | |
index.js | 8 年之前 | |
license | 8 年之前 | |
package.json | 8 年之前 | |
readme.md | 8 年之前 |
Boxes for use in the terminal
The list of boxes is just a JSON file and can be used wherever.
$ npm install --save cli-boxes
const cliBoxes = require('cli-boxes');
console.log(cliBoxes.single);
/*
{
"topLeft": "┌",
"topRight": "┐",
"bottomRight": "┘",
"bottomLeft": "└",
"vertical": "│",
"horizontal": "─"
}
*/
single
┌────┐
│ │
└────┘
double
╔════╗
║ ║
╚════╝
round
╭────╮
│ │
╰────╯
single-double
╓────╖
║ ║
╙────╜
double-single
╒════╕
│ │
╘════╛
classic
+----+
| |
+----+
MIT © Sindre Sorhus