Bones/node_modules/boxen/border-characters.js

46 lines
765 B
JavaScript
Raw Normal View History

2017-05-17 13:45:25 -04:00
exports.single = {
topLeft: '┌',
topRight: '┐',
bottomRight: '┘',
bottomLeft: '└',
vertical: '│',
horizontal: '─'
};
exports.double = {
topLeft: '╔',
topRight: '╗',
bottomRight: '╝',
bottomLeft: '╚',
vertical: '║',
horizontal: '═'
};
exports.round = {
topLeft: '╭',
topRight: '╮',
bottomRight: '╯',
bottomLeft: '╰',
vertical: '│',
horizontal: '─'
};
// 1st: top and bottom, 2nd: left and right (as in CSS shorthands)
exports['single-double'] = {
topLeft: '╓',
topRight: '╖',
bottomRight: '╜',
bottomLeft: '╙',
vertical: '║',
horizontal: '─'
};
exports['double-single'] = {
topLeft: '╒',
topRight: '╕',
bottomRight: '╛',
bottomLeft: '╘',
vertical: '│',
horizontal: '═'
};