You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now non-plain objects like timestamps are not being converted correctly, therefore, they're lost, transformed into empty objects instead. This is actually visible in the example
The text was updated successfully, but these errors were encountered:
Fix#164
Firestore has native support for timestamps, which show up in JS as `Date` objects. We need a special case in `extractRefs` because recursing into a `Date` and copying its fields doesn't produce a proper copy. Instead we should pass it through the same way we do with more fundamental types, like strings or numbers.
Right now non-plain objects like timestamps are not being converted correctly, therefore, they're lost, transformed into empty objects instead. This is actually visible in the example
The text was updated successfully, but these errors were encountered: