Skip to content

Instantly share code, notes, and snippets.

@mlg87
Created January 18, 2019 15:49
Show Gist options
  • Save mlg87/b5ed1acd6b3d4ad8c07f25fd228ad359 to your computer and use it in GitHub Desktop.
Save mlg87/b5ed1acd6b3d4ad8c07f25fd228ad359 to your computer and use it in GitHub Desktop.
async function doSomething(data) {
if(data.ok) {
return await db.insert(data)
}
if(typeof data === 'string') {
return new Alert(data)
}
if(data.type === 'result') {
return doShit(data)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment