UNPKG
@starryinternet/jobi
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.2
1.0.1
1.0.0
Tiny logging utility with events and streams
github.com/StarryInternet/jobi
StarryInternet/jobi
@starryinternet/jobi
/
lib
/
formats
/
index.js
15 lines
(12 loc)
•
204 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** * @typedef {
function
(Log)
:
string
} Format */ const json =
require
(
'./json'
); const pretty =
require
(
'./pretty'
); /** * @
type
{Object.<
string
, Format>} */
module
.exports = { json, pretty };