@gammatech/aijsx 0.2.0-beta.2 → 0.2.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -392,7 +392,7 @@ function parseXml(input) {
|
|
|
392
392
|
return constructNode(null, parsed[0]);
|
|
393
393
|
}
|
|
394
394
|
function escape(html) {
|
|
395
|
-
return html.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(/"/g, """)
|
|
395
|
+
return html.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(/"/g, """);
|
|
396
396
|
}
|
|
397
397
|
|
|
398
398
|
// src/context.ts
|
package/dist/index.mjs
CHANGED
|
@@ -309,7 +309,7 @@ function parseXml(input) {
|
|
|
309
309
|
return constructNode(null, parsed[0]);
|
|
310
310
|
}
|
|
311
311
|
function escape(html) {
|
|
312
|
-
return html.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(/"/g, """)
|
|
312
|
+
return html.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(/"/g, """);
|
|
313
313
|
}
|
|
314
314
|
|
|
315
315
|
// src/context.ts
|