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
Copy file name to clipboardExpand all lines: src/utils.ts
+10
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,13 @@ export interface CheckUrlRef {
38
38
isQuery?: ()=>any;
39
39
}
40
40
41
+
/**
42
+
* Unwraps the data returned in the DataSnapshot. Exposes the DataSnapshot key and exists methods through the $key and $exists properties respectively. If the value is primitive, it is unwrapped using a $value property. The $ properies mean they cannot be saved in the Database as those characters are invalid.
43
+
* @param {DataSnapshot} snapshot - The snapshot to unwrap
0 commit comments