咸鱼要翻身
 
 
 
 
 

9 lines
194 B

export default class JSONReporter {
constructor ({ stream } = {}) {
this.stream = stream || process.stdout
}
log (logObj) {
this.stream.write(JSON.stringify(logObj) + '\n')
}
}