refactor: circular deps part 15

This commit is contained in:
Nathan Walker
2025-07-11 16:18:14 -07:00
parent e7ab426ee2
commit 35fef40e5b
18 changed files with 697 additions and 690 deletions

View File

@ -63,7 +63,7 @@
// module.exports.EasySAXParser = EasySAXParser;
// };
export function EasySAXParser() {
function EasySAXParser() {
'use strict';
if (!this) return null;
@ -780,3 +780,5 @@ EasySAXParser.prototype.parse = function(xml) {
j += 1;
};
};
export { EasySAXParser };