mirror of
https://github.com/pinojs/pino.git
synced 2025-12-08 20:36:13 +00:00
10 lines
210 B
JavaScript
10 lines
210 B
JavaScript
'use strict'
|
|
|
|
const nullTime = () => ''
|
|
|
|
const epochTime = () => `,"time":${Date.now()}`
|
|
|
|
const unixTime = () => `,"time":${Math.round(Date.now() / 1000.0)}`
|
|
|
|
module.exports = { nullTime, epochTime, unixTime }
|