Last active
September 22, 2018 23:07
-
-
Save nem035/f907941e646782628bcacde348addcf1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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