"use strict";const{hrtime,toMS}=require("./utils");// Returns the DOMHighResTimeStamp representing the high resolution time value of the global monotonic clock.functiongetGlobalMonotonicClockMS(){returntoMS(hrtime());}module.exports={getGlobalMonotonicClockMS};