Comparing version
@@ -50,6 +50,6 @@ "use strict"; | ||
static normalizeSpaces(text) { | ||
return text.replace(/\s+/g, ' '); | ||
return String(text).replace(/\s+/g, ' '); | ||
} | ||
static replaceAll(text, search, replacement) { | ||
return text.split(search).join(replacement); | ||
return String(text).split(search).join(replacement); | ||
} | ||
@@ -56,0 +56,0 @@ static escapeRegExpChars(text) { |
{ | ||
"name": "typesxml", | ||
"productName": "TypesXML", | ||
"version": "1.5.1", | ||
"version": "1.5.2", | ||
"description": "Open source XML library written in TypeScript", | ||
@@ -32,5 +32,5 @@ "keywords": [ | ||
"devDependencies": { | ||
"@types/node": "^22.1.0", | ||
"@types/node": "^20.14.14", | ||
"typescript": "^5.5.4" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
281770
0.02%