UNPKG

wikidata-filter

Version:

Filter and format a newline-delimited JSON stream of Wikidata entities

11 lines (10 loc) 240 B
module.exports = err => { // If the next stream refuse the input // this stream should stop // see: http://stackoverflow.com/a/15884508/3324977 if (err.code === 'EPIPE') { process.exit(0) } else { console.error(err) } }