Skip to content

Instantly share code, notes, and snippets.

@r17x
Created April 26, 2021 15:34
Show Gist options
  • Save r17x/77405cf84c8085fa3318d348eaed1133 to your computer and use it in GitHub Desktop.
Save r17x/77405cf84c8085fa3318d348eaed1133 to your computer and use it in GitHub Desktop.
Measure my Browser callstack
export const getMaxCallStack = () => {
let i=0;
function rec(){
i++; rec();
}
try {rec();} catch(e){}finally{return i}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment