Skip to content

Instantly share code, notes, and snippets.

@sibelius
Created November 17, 2021 13:12
Show Gist options
  • Save sibelius/49729fb6c5b70eafddb7212e525acb46 to your computer and use it in GitHub Desktop.
Save sibelius/49729fb6c5b70eafddb7212e525acb46 to your computer and use it in GitHub Desktop.
early return to check required condition
export const fn = async () => {
if (!requiredCondition) {
return;
}
if (!anotherRequiredCondition) {
return
}
await mainCode();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment