dominictarr / JSONStream

rawStream.pipe(JSONStream.parse()).pipe(streamOfObjects)
Other
1.92k stars 165 forks source link

Make tests run on Windows #156

Closed bzoz closed 6 years ago

bzoz commented 6 years ago

Change bash script to node script, to make tests run on all platforms.

doowb commented 6 years ago

I think this is a good idea. If you update the code to use older JavaScript syntax, then it will work on the currently supported versions of node. E.g. don't use const, object destructing, or fat arrow syntax.

bzoz commented 6 years ago

Updated, PTAL