Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- "use strict";
-
- const { hrtime, toMS } = require("./utils");
-
- // Returns the DOMHighResTimeStamp representing the high resolution time value of the global monotonic clock.
- function getGlobalMonotonicClockMS() {
- return toMS(hrtime());
- }
-
- module.exports = { getGlobalMonotonicClockMS };
|