Skip to content

Commit f2efa66

Browse files
Test fix
1 parent 00e672f commit f2efa66

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

packages/firestore/src/api/blob.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ export class Blob extends Compat<Bytes> {
6262
return this._delegate.toUint8Array();
6363
}
6464

65+
isEqual(other: Blob) {
66+
return this._delegate.isEqual(other._delegate);
67+
}
68+
6569
toString(): string {
6670
return 'Blob(base64: ' + this.toBase64() + ')';
6771
}

packages/firestore/src/platform/node_lite/serializer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
* limitations under the License.
1616
*/
1717

18-
export * from '../node/serializer';
18+
export * from '../browser_lite/serializer';

0 commit comments

Comments
 (0)