feat: update dependencies, node

This commit is contained in:
xHyroM 2022-10-29 10:03:51 +02:00
parent 0ec953ee6d
commit 29cb413d63
507 changed files with 84113 additions and 61309 deletions

View file

@ -23,7 +23,7 @@ export function parseXML(str: string): Promise<any> {
if (!str) {
reject(new Error("Document is empty"));
} else {
xmlParser.parseString(str, (err?: Error, res?: any) => {
xmlParser.parseString(str, (err: any, res: any) => {
if (err) {
reject(err);
} else {