Files
HarmonyOS--waterapp/mqtt-backend/node_modules/retimer/time.js
T
2026-07-13 12:06:16 +08:00

7 lines
134 B
JavaScript

'use strict'
module.exports = function getTime () {
const t = process.hrtime()
return Math.floor(t[0] * 1000 + t[1] / 1000000)
}