2
0
mirror of https://github.com/cderche/greenlock-storage-s3 synced 2025-07-06 16:16:31 +00:00
2019-05-08 12:19:12 +01:00

8 lines
193 B
JavaScript

module.exports = {
//provide realtime clock for performance measurement
now: function now() {
var second = process.hrtime();
return second[0] * 1000 + (second[1] / 1000000);
}
};