@drorgl/xml-streamer
Version:
XML stream parser for parsing large files efficiently with less usage of memory.
16 lines • 468 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
class ParserState {
constructor() {
this.currentPath = "";
this.lastEndedNode = "";
this.isPathfound = false;
this.object = {};
this.paused = false;
this.isRootNode = true;
this.firstFoundNode = "";
this.interestedNodes = [];
}
}
exports.ParserState = ParserState;
//# sourceMappingURL=parserState.js.map
;