Skip to content

Instantly share code, notes, and snippets.

@Ivannnnn
Last active August 31, 2022 10:36
Show Gist options
  • Save Ivannnnn/8d3f66f0eca322c4b360905321e5a3d7 to your computer and use it in GitHub Desktop.
Save Ivannnnn/8d3f66f0eca322c4b360905321e5a3d7 to your computer and use it in GitHub Desktop.
Execution time of function
const timeTaken =
(fn) =>
async (...args) => {
console.time(fn.name);
const res = await fn(...args);
console.timeEnd(fn.name);
return res;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment