UNPKG

iamdarshshah

Version:
53 lines (45 loc) 710 B
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