()
| 596 | return this.native?.exists(); |
| 597 | } |
| 598 | exportVal() { |
| 599 | return { |
| 600 | '.priority': this.native.getPriority?.(), |
| 601 | '.value': deserialize(this.native.getValue(true)), |
| 602 | }; |
| 603 | } |
| 604 | forEach(action: (child: DataSnapshot) => true | undefined): boolean { |
| 605 | const iterator = this.native.getChildren().iterator(); |
| 606 | let stopEnumerate = false; |
nothing calls this directly
no test coverage detected