betajs/betajs-debug

View on GitHub
src/debug/timing.js

Summary

Maintainability
A
0 mins
Test Coverage
Scoped.define("module:Timing", [], function () {
    
    return {

        now: function () {
            return window.performance && window.performance.now ? performance.now() : (new Date()).getTime();
        }
        
    };
});