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

8 lines
174 B
JavaScript

module.exports =
global.performance &&
global.performance.now ? function now() {
return performance.now()
} : Date.now || function now() {
return +new Date
}