Skip to content
Snippets Groups Projects
time.ts 667 B
/**
 * Copyright (c) 2017 mol* contributors, licensed under MIT, See LICENSE file for more info.
 *
 * @author David Sehnal <david.sehnal@gmail.com>
 */

declare var process: any;
declare var window: any;

const now: () => number = (function () {
    if (typeof window !== 'undefined' && window.performance) {
        const perf = window.performance;
        return () => perf.now();
    } else if (typeof process !== 'undefined' && process.hrtime !== 'undefined') {
        return () => {
            let t = process.hrtime();
            return t[0] * 1000 + t[1] / 1000000;
        };
    } else {
        return () => +new Date();
    }
}());

export default now;