All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.lib.util.clock.js Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy