securityos/node_modules/regl/lib/util/clock.js

6 lines
191 B
JavaScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
/* globals performance */
module.exports =
(typeof performance !== 'undefined' && performance.now)
? function () { return performance.now() }
: function () { return +(new Date()) }