UNPKG

@starryinternet/jobi

Version:

Tiny logging utility with events and streams

15 lines (12 loc) 204 B
/** * @typedef {function(Log):string} Format */ const json = require('./json'); const pretty = require('./pretty'); /** * @type {Object.<string, Format>} */ module.exports = { json, pretty };