refactor: fix linting and typechecking errors

This commit is contained in:
2025-12-11 19:41:36 -05:00
parent 962f2ad7ee
commit 4f9602a242
35 changed files with 768 additions and 720 deletions

View File

@@ -30356,7 +30356,6 @@ class PostScriptLexer {
;
(t = this.nextChar()) >= 0 &&
((t >= 65 && t <= 90) || (t >= 97 && t <= 122));
)
i.push(String.fromCharCode(t));
const a = i.join("");
@@ -30378,7 +30377,6 @@ class PostScriptLexer {
;
(e = this.nextChar()) >= 0 &&
((e >= 48 && e <= 57) || 45 === e || 46 === e);
)
t.push(String.fromCharCode(e));
const i = parseFloat(t.join(""));
@@ -37773,7 +37771,6 @@ class XMLParserBase {
for (
;
a < e.length && !isWhitespace(e, a) && ">" !== e[a] && "/" !== e[a];
)
++a;
const s = e.substring(t, a);
@@ -37810,7 +37807,6 @@ class XMLParserBase {
">" !== e[i] &&
"?" !== e[i] &&
"/" !== e[i];
)
++i;
const a = e.substring(t, i);