File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
packages/firestore/src/util Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1717
1818import { BundleMetadata } from '../protos/firestore_bundle_proto' ;
1919import { JsonProtoSerializer } from '../remote/serializer' ;
20- import { Code , FirestoreError } from '../util/error'
20+ import { Code , FirestoreError } from '../util/error' ;
2121
2222import { BundleReaderSync , SizedBundleElement } from './bundle_reader' ;
2323
@@ -87,7 +87,8 @@ export class BundleReaderSyncImpl implements BundleReaderSync {
8787 if ( this . cursor + length > this . bundleData . length ) {
8888 throw new FirestoreError (
8989 Code . INTERNAL ,
90- 'Reached the end of bundle when more is expected.' ) ;
90+ 'Reached the end of bundle when more is expected.'
91+ ) ;
9192 }
9293 const result = this . bundleData . slice ( this . cursor , ( this . cursor += length ) ) ;
9394 return result ;
You can’t perform that action at this time.
0 commit comments