We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e7a3d1 commit 370a24fCopy full SHA for 370a24f
packages/firestore/src/model/path.ts
@@ -163,6 +163,7 @@ abstract class BasePath<B extends BasePath<B>> {
163
return this.segments.slice(this.offset, this.limit());
164
}
165
166
+ // TODO(Mila): Use database info and toString() to get full path instead.
167
toFullPath(): string {
168
return this.segments.join('/');
169
packages/firestore/src/remote/watch_change.ts
@@ -484,6 +484,7 @@ export class WatchChangeAggregator {
484
return expectedCount === currentCount - removedDocumentCount;
485
486
487
+ // TODO(Mila): Move the validation into normalizeByteString.
488
private isValidBase64String(value: string): boolean {
489
const regExp = new RegExp(
490
'^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$'
0 commit comments