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

package.src.profiler.js Maven / Gradle / Ivy

The newest version!
/**
 * @param {!string} name
 */

export function tick(name){

    /** @type {!Object} */
    const profiler = window["profiler"] || (window["profiler"] = {});

    profiler[name] || (profiler[name] = 0);
    profiler[name]++;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy