|
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 |
|
|---|
| 3 | const { hrtime, toMS } = require("./utils");
|
|---|
| 4 |
|
|---|
| 5 | // Returns the DOMHighResTimeStamp representing the high resolution time value of the global monotonic clock.
|
|---|
| 6 | function getGlobalMonotonicClockMS() {
|
|---|
| 7 | return toMS(hrtime());
|
|---|
| 8 | }
|
|---|
| 9 |
|
|---|
| 10 | module.exports = { getGlobalMonotonicClockMS };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.