Skip to content

Instantly share code, notes, and snippets.

@butackle
Created March 5, 2017 08:04
Show Gist options
  • Save butackle/599617dc21c40c921114eb218195a957 to your computer and use it in GitHub Desktop.
Save butackle/599617dc21c40c921114eb218195a957 to your computer and use it in GitHub Desktop.
const getList = (snapshot) => {
const obj = snapshot.val();
if (!obj) return [];
return Object.keys(obj).map((key) => obj[key]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment