uawdijnntqw1x1x1
IP : 216.73.216.39
Hostname : diefsweb003.fsit.ch
Kernel : Linux diefsweb003.fsit.ch 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
wirbesti
/
unwaehlbar.ch
/
node_modules
/
browser-process-hrtime
/
index.js
/
/
module.exports = process.hrtime || hrtime // polyfil for window.performance.now var performance = global.performance || {} var performanceNow = performance.now || performance.mozNow || performance.msNow || performance.oNow || performance.webkitNow || function(){ return (new Date()).getTime() } // generate timestamp or delta // see http://nodejs.org/api/process.html#process_process_hrtime function hrtime(previousTimestamp){ var clocktime = performanceNow.call(performance)*1e-3 var seconds = Math.floor(clocktime) var nanoseconds = Math.floor((clocktime%1)*1e9) if (previousTimestamp) { seconds = seconds - previousTimestamp[0] nanoseconds = nanoseconds - previousTimestamp[1] if (nanoseconds<0) { seconds-- nanoseconds += 1e9 } } return [seconds,nanoseconds] }
/home/wirbesti/unwaehlbar.ch/node_modules/browser-process-hrtime/index.js