(formatter)
| 1 | import { FormatterCallback } from '../formatter' |
| 2 | |
| 3 | const jsonFormatter: FormatterCallback = function (formatter) { |
| 4 | formatter.on('end', (event) => { |
| 5 | console.log(JSON.stringify(event.arrAllMessages)) |
| 6 | }) |
| 7 | } |
| 8 | |
| 9 | module.exports = jsonFormatter |