forked from winstonjs/logform
-
Notifications
You must be signed in to change notification settings - Fork 1
/
json.js
29 lines (26 loc) · 833 Bytes
/
json.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
'use strict';
const format = require('./format');
const { MESSAGE } = require('triple-beam');
const jsonStringify = require('fast-safe-stringify');
/*
* function replacer (key, value)
* Handles proper stringification of Buffer and bigint output.
*/
function replacer(key, value) {
if (value instanceof Buffer)
return value.toString('base64');
// eslint-disable-next-line valid-typeof
if (typeof value === 'bigint')
return value.toString();
return value;
}
/*
* function json (info)
* Returns a new instance of the JSON format that turns a log `info`
* object into pure JSON. This was previously exposed as { json: true }
* to transports in `winston < 3.0.0`.
*/
module.exports = format((info, opts = {}) => {
info[MESSAGE] = jsonStringify(info, opts.replacer || replacer, opts.space);
return info;
});