UNPKG

@tdb/web

Version:

Common condiguration for serving a web-site and testing web-based UI components.

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