mirror of
https://github.com/denoland/deno.git
synced 2025-09-28 05:04:48 +00:00
chore: update ext/ code to only use ASCII (#18371)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
This commit is contained in:
parent
d06fdf6add
commit
f69e4794d2
10 changed files with 45 additions and 43 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue