Value Change Dump (VCD) parser
npm install vcd-stream

Value Change Dump (VCD) parser using llparse
Install
```
npm i vcd-stream
make wasm
Require
`js`
let vcd = require('vcd-stream');
Create parser writable stream instance
`js`
let inst = vcd.parser();
General event emitter
`js`
inst.on(
Events:
* $enddefinitions - when all modules/wires are definedfinish
* - end of streamerror
* - error during parsing process
Change event emitter
`js`
inst.change.on(
* time -- change timecmd
* -- change type
Info object
`js`
let info = inst.info;
* info.status - ('declaration'|'simulation')info.wires
* - hierarchy object of modules and wires
Pipe data into the instance
`js`
myStream.pipe(inst);
``
npm i
npm run mocha_napi
``
make
npm run mocha_wasm
```
npm test
MIT LICENSE