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 9263214 commit 3a22894Copy full SHA for 3a22894
packages/firestore/exp/test/shim.ts
@@ -749,6 +749,8 @@ function unwwrap(value: any): any {
749
if (Array.isArray(value)) {
750
return value.map(v => unwwrap(v));
751
} else if (value instanceof FieldPath) {
752
+ return value._delegate;
753
+ } else if (value instanceof FieldValue) {
754
return value._delegate;
755
} else if (value instanceof DocumentReference) {
756
0 commit comments