Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. this.db.collection('settings').onSnapshot(snapshot => {
  2. snapshot.forEach(doc => {
  3. this.cachedSettings[doc.id] = doc.data();
  4. });
  5. });
  6.  
  7. this.db.collection('settings').onSnapshot(snapshot => {
  8. snapshot.forEach(({ id, data }) => {
  9. this.cachedSettings[id] = data();
  10. });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement