mirror of
https://github.com/actions/setup-python.git
synced 2025-06-13 07:47:12 +02:00
Initial pass
This commit is contained in:
10
node_modules/w3c-hr-time/lib/global-monotonic-clock.js
generated
vendored
Normal file
10
node_modules/w3c-hr-time/lib/global-monotonic-clock.js
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
"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 };
|
Reference in New Issue
Block a user