mirror of
https://github.com/soconnor0919/personal-website.git
synced 2025-12-15 08:14:43 -05:00
refactor: fix linting and typechecking errors
This commit is contained in:
4
public/pdf.worker.min.js
vendored
4
public/pdf.worker.min.js
vendored
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user