Skip to content

Instantly share code, notes, and snippets.

@Bon2xl
Last active July 17, 2018 05:10
Show Gist options
  • Save Bon2xl/eed7ee3185498a359bc56fb286a21d61 to your computer and use it in GitHub Desktop.
Save Bon2xl/eed7ee3185498a359bc56fb286a21d61 to your computer and use it in GitHub Desktop.
const snapPromise = db.ref('bars')
.once('value')
const snap = await snapPromise
const value = snap.val()
// do something with value...
// same thing
const value = await db
.ref('bars')
.once('value')
.then(snap => snap.val())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment