1.0.0 • Published 6 years ago

timing-helper v1.0.0

Weekly downloads
2
License
MIT
Repository
-
Last release
6 years ago

timing-helper

Wrapper for timing navigation api v1

###Example of using

document.addEventListener('load', onLoadHandler);

const onLoadHandler = () => {
    // gather after all other onload handlers have fired
    setTimeout(() => {
        const times = TimingHelper(window);
        console.log(times);
    }, 0);
}