rizzo-next
Version:
The next generation of Lonely Planet's style guide and pattern library.
18 lines (15 loc) • 406 B
JavaScript
let mark = (name) => {
if (window.performance && window.performance.mark) {
window.performance.mark(name);
}
};
let measure = (name, start, end) => {
if (window.performance && window.performance.measure) {
window.performance.measure(name, start, end);
let entries;
return (entries = window.performance.getEntriesByName(name))[entries.length - 1];
}
};
export {
mark, measure
};