版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

11 строки
286 B

  1. "use strict";
  2. const { hrtime, toMS } = require("./utils");
  3. // Returns the DOMHighResTimeStamp representing the high resolution time value of the global monotonic clock.
  4. function getGlobalMonotonicClockMS() {
  5. return toMS(hrtime());
  6. }
  7. module.exports = { getGlobalMonotonicClockMS };