mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 00:49:29 +08:00
9 lines
194 B
Text
9 lines
194 B
Text
export default class JSONReporter {
|
|
constructor ({ stream } = {}) {
|
|
this.stream = stream || process.stdout
|
|
}
|
|
|
|
log (logObj) {
|
|
this.stream.write(JSON.stringify(logObj) + '\n')
|
|
}
|
|
}
|