source: frontend/node_modules/w3c-hr-time/lib/global-monotonic-clock.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 2 weeks ago

Fix frontend appearance

  • Property mode set to 100644
File size: 286 bytes
Line 
1"use strict";
2
3const { hrtime, toMS } = require("./utils");
4
5// Returns the DOMHighResTimeStamp representing the high resolution time value of the global monotonic clock.
6function getGlobalMonotonicClockMS() {
7 return toMS(hrtime());
8}
9
10module.exports = { getGlobalMonotonicClockMS };
Note: See TracBrowser for help on using the repository browser.