the process.hrtime() is a legacy version of process.hrtime.bigint() method
process.hrtime(); // -> [27511, 516453000] (seconds, remaining nanoseconds)
process.hrtime.bigint(); // -> 27511516453000n (nanoseconds)
27511516453000 nanoseconds are 7.6420879036111113 hours
When I'm Testing this the time is 11:54 UTC and 14:54 Locale Time
- the 7.64 hours does not refer to the current time so what is that 7.64 hours are referring to?