first commit: add entire code base

This commit is contained in:
Sai1919
2016-11-07 01:54:36 +05:30
parent 1b155e745c
commit cf1148b879
8 changed files with 1553 additions and 0 deletions

12
parserState.js Normal file
View File

@@ -0,0 +1,12 @@
function ParserState () {
this.currentPath = ''
this.lastEndedNode = ''
this.isPathfound = false
this.object = {}
this.buffer = []
this.paused = false
this.isRootNode = true
}
module.exports = ParserState