iamdarshshah
Version:
🃏 npx business card
53 lines (45 loc) • 710 B
JavaScript
const normal = {
topLeft: '┌',
topRight: '┐',
bottomLeft: '└',
bottomRight: '┘',
}
const rounded = {
topLeft: '╭',
topRight: '╮',
bottomLeft: '╰',
bottomRight: '╯',
}
const heavy = {
topLeft: '┏',
topRight: '┓',
bottomLeft: '┗',
bottomRight: '┛',
}
const double = {
topLeft: '╔',
topRight: '╗',
bottomLeft: '╚',
bottomRight: '╝',
}
const doubleH = {
topLeft: '╒',
topRight: '╕',
bottomLeft: '╘',
bottomRight: '╛',
}
const doubleV = {
topLeft: '╓',
topRight: '╖',
bottomLeft: '╙',
bottomRight: '╜',
}
const corners = {
normal,
rounded,
heavy,
double,
doubleH,
doubleV,
}
module.exports = corners