const measureTime = (func, label = "default") => {
if (typeof func !== "function") {
console.error(`func must be a valid function, ${typeof func} provided`)
return
}
console.time(label)
func()
console.timeEnd(label)
}
measureTime("findPeople", someExpensiveFindPeopleFunction)
// findPeople: 13426.336181640625ms
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter