summaryrefslogtreecommitdiff
path: root/ext/console/02_console.js
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2023-03-22 19:34:14 -0600
committerGitHub <noreply@github.com>2023-03-22 19:34:14 -0600
commitf69e4794d2d016c8cdbf4a4de8affd0c92f2732c (patch)
treed1a722cb30385126af0408416095321381f4b041 /ext/console/02_console.js
parentd06fdf6add1b3c55fc5f4a24956f17a363d513a4 (diff)
chore: update ext/ code to only use ASCII (#18371)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
Diffstat (limited to 'ext/console/02_console.js')
-rw-r--r--ext/console/02_console.js26
1 files changed, 13 insertions, 13 deletions
diff --git a/ext/console/02_console.js b/ext/console/02_console.js
index f82057771..8c33ac3bc 100644
--- a/ext/console/02_console.js
+++ b/ext/console/02_console.js
@@ -150,19 +150,19 @@ function isTypedArray(x) {
}
const tableChars = {
- middleMiddle: "─",
- rowMiddle: "┼",
- topRight: "┐",
- topLeft: "┌",
- leftMiddle: "├",
- topMiddle: "┬",
- bottomRight: "┘",
- bottomLeft: "└",
- bottomMiddle: "┴",
- rightMiddle: "┤",
- left: "│ ",
- right: " │",
- middle: " │ ",
+ middleMiddle: "\u2500",
+ rowMiddle: "\u253c",
+ topRight: "\u2510",
+ topLeft: "\u250c",
+ leftMiddle: "\u251c",
+ topMiddle: "\u252c",
+ bottomRight: "\u2518",
+ bottomLeft: "\u2514",
+ bottomMiddle: "\u2534",
+ rightMiddle: "\u2524",
+ left: "\u2502 ",
+ right: " \u2502",
+ middle: " \u2502 ",
};
function isFullWidthCodePoint(code) {