Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chuyeow/79803 to your computer and use it in GitHub Desktop.
Save chuyeow/79803 to your computer and use it in GitHub Desktop.
function foo() {
if (!arguments.callee.done) {
arguments.callee.done = true;
} else {
return;
}
// Actual code here.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment