cli-tableau icon indicating copy to clipboard operation
cli-tableau copied to clipboard

Printing Chinese, the border will appear disorderly

Open xzxldl55 opened this issue 4 years ago • 0 comments

like this demo:

var table = new Table({
    head: ['name', 'version']
});
table.push(['卡片', '1.0.0']);
console.log(table.toString());

The border in the vertical direction will be misaligned, like: ┌────┬───────┐ │ name│ version │ ├────┼───────┤ │ 卡片 │ 1.0.0 │ └────┴───────┘

xzxldl55 avatar Aug 31 '20 08:08 xzxldl55