Last active
July 17, 2018 05:10
-
-
Save Bon2xl/eed7ee3185498a359bc56fb286a21d61 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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