Skip to content

Commit 04620bc

Browse files
committed
format
1 parent 2fb5df3 commit 04620bc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/firestore/src/util/bundle_reader_sync_impl.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
import { BundleMetadata } from '../protos/firestore_bundle_proto';
1919
import { JsonProtoSerializer } from '../remote/serializer';
20-
import { Code, FirestoreError } from '../util/error'
20+
import { Code, FirestoreError } from '../util/error';
2121

2222
import { 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;

0 commit comments

Comments
 (0)