biofriction-wp-theme/node_modules/limiter/lib/clock.js

14 lines
336 B
JavaScript
Raw Normal View History

2021-10-26 14:18:09 +02:00
var getMilliseconds = function() {
if (typeof process !== 'undefined' && process.hrtime) {
var hrtime = process.hrtime();
var seconds = hrtime[0];
var nanoseconds = hrtime[1];
return seconds * 1e3 + Math.floor(nanoseconds / 1e6);
}
return new Date().getTime();
}
module.exports = getMilliseconds;