Is there a way to stop parsing after you hit a certain value?
For example:
stream.on('data', function(data) {`
if(data == 'someValue'){`
stream.stop();
}
});
This would useful when you only need a certain value or you only need to check a specific number of entries.