File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
packages/firebase-firestore Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -811,7 +811,7 @@ export class QuerySnapshot implements IQuerySnapshot {
811
811
const cb = thisArg ? callback . bind ( thisArg ) : callback ;
812
812
const count = this . native . size ( ) ;
813
813
const documents = this . native . getDocuments ( ) ;
814
- for ( let i = 0 ; i < count ; i ) {
814
+ for ( let i = 0 ; i < count ; i ++ ) {
815
815
cb ( QueryDocumentSnapshot . fromNative ( documents . get ( i ) ) ) ;
816
816
}
817
817
}
Original file line number Diff line number Diff line change @@ -730,7 +730,7 @@ export class QuerySnapshot implements IQuerySnapshot {
730
730
if ( typeof callback === 'function' ) {
731
731
const cb = thisArg ? callback . bind ( thisArg ) : callback ;
732
732
const count = this . native . count ;
733
- for ( let i = 0 ; i < count ; i ) {
733
+ for ( let i = 0 ; i < count ; i ++ ) {
734
734
cb ( QueryDocumentSnapshot . fromNative ( this . native . documents . objectAtIndex ( i ) ) ) ;
735
735
}
736
736
}
You can’t perform that action at this time.
0 commit comments