Files
xml-streamer/parserState.js
2016-11-07 01:54:36 +05:30

13 lines
221 B
JavaScript

function ParserState () {
this.currentPath = ''
this.lastEndedNode = ''
this.isPathfound = false
this.object = {}
this.buffer = []
this.paused = false
this.isRootNode = true
}
module.exports = ParserState