Skip to content

Instantly share code, notes, and snippets.

@nem035
Last active September 22, 2018 23:07
Show Gist options
  • Select an option

  • Save nem035/f907941e646782628bcacde348addcf1 to your computer and use it in GitHub Desktop.

Select an option

Save nem035/f907941e646782628bcacde348addcf1 to your computer and use it in GitHub Desktop.
function computeMaxCallStackSize() {
try {
return 1 + computeMaxCallStackSize();
} catch (e) {
return 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment