We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Import preserves NaN values and completes the import
If a document contains NaN values, they are translated to "undefined" which makes firebase import fail
let profileData = { __collections__:{}, nanField: parseFloat("sfg"), } const profileRef = firebase.firestore().doc(`users/${uid}`); await firestoreImport(profileData, profileRef)
The text was updated successfully, but these errors were encountered:
I guess adding (val !== val) to isScalar can fix that (this expression returns true in case of NaN)
isScalar
Sorry, something went wrong.
No branches or pull requests
Expected behavior
Import preserves NaN values and completes the import
Actual behavior
If a document contains NaN values, they are translated to "undefined" which makes firebase import fail
Steps to reproduce the behavior
The text was updated successfully, but these errors were encountered: