You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 19, 2025. It is now read-only.
I recently switched to using firebase-bolt.
I've been trying to do something like
root.child('collection').child('doc').hasChild('someKey')When trying to compile this, it complains that the hasChild function is undefined. I tried going around it with:
root.child('collection').child('doc').child('someKey').exists()And I got the same complaint about exist.
I found a work around with " != null" but it would be nice if we could have those two functions out of the box.