package.src.profiler.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mikado Show documentation
Show all versions of mikado Show documentation
Web's fastest template library to build user interfaces.
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