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

6 lines
191 B
JavaScript

/* globals performance */
module.exports =
(typeof performance !== 'undefined' && performance.now)
? function () { return performance.now() }
: function () { return +(new Date()) }