Skip to content

Instantly share code, notes, and snippets.

@augustl
Created February 11, 2016 12:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save augustl/990e0507e7b26e8367df to your computer and use it in GitHub Desktop.
Save augustl/990e0507e7b26e8367df to your computer and use it in GitHub Desktop.
function wtf() {
function doIt() {
// Do the stuff here!
}
if (something) {
var otherThing = somewhatExpensiveGetter(something);
if (otherThing) {
doIt();
}
}
if (yetAnotherThing) {
doIt();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment