UNPKG

pino

Version:

super fast, all natural json logger

11 lines (9 loc) 170 B
const { Writable } = require('node:stream') module.exports = () => { return new Writable({ autoDestroy: true, write (chunk, enc, cb) { cb() } }) }