Files
enviPy-bayer/static/js/ketcher2/node_modules/right-now/index.js
2025-06-23 20:13:54 +02:00

5 lines
105 B
JavaScript

module.exports = function now() {
var time = process.hrtime()
return time[0] * 1e3 + time[1] / 1e6
}