UNPKG
retimer
Version:
latest (4.0.0)
4.0.0
3.0.0
2.0.0
1.1.0
1.0.1
1.0.0
0.0.1
Reschedulable Timer for your node needs
github.com/mcollina/retimer
mcollina/retimer
retimer
/
time.js
7 lines
(5 loc)
•
134 B
JavaScript
View Raw
1
2
3
4
5
6
7
'use strict'
module
.
exports
=
function
getTime
(
) {
const
t = process.
hrtime
()
return
Math
.
floor
(t[
0
] *
1000
+ t[
1
] /
1000000
) }