summaryrefslogtreecommitdiff
path: root/includes/external/school/node_modules/w3c-hr-time/lib/global-monotonic-clock.js
diff options
context:
space:
mode:
Diffstat (limited to 'includes/external/school/node_modules/w3c-hr-time/lib/global-monotonic-clock.js')
-rw-r--r--includes/external/school/node_modules/w3c-hr-time/lib/global-monotonic-clock.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/includes/external/school/node_modules/w3c-hr-time/lib/global-monotonic-clock.js b/includes/external/school/node_modules/w3c-hr-time/lib/global-monotonic-clock.js
deleted file mode 100644
index 4e9aee9..0000000
--- a/includes/external/school/node_modules/w3c-hr-time/lib/global-monotonic-clock.js
+++ /dev/null
@@ -1,10 +0,0 @@
-"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 };