Skip to content

Instantly share code, notes, and snippets.

@piscisaureus
Created February 14, 2012 15:27
Show Gist options
  • Save piscisaureus/1827560 to your computer and use it in GitHub Desktop.
Save piscisaureus/1827560 to your computer and use it in GitHub Desktop.
function stackProbe() {
var depth = 25;
try {
(function inner() {
if (--depth) inner();
})();
} catch (e) {
throw new Error("Stack overflow about to happen.");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment