chore: update ext/ code to only use ASCII (#18371)

Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
This commit is contained in:
Matt Mastracci 2023-03-22 19:34:14 -06:00 committed by GitHub
parent d06fdf6add
commit f69e4794d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 45 additions and 43 deletions

View file

@ -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) {