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
Javascript has an issue with uint64. They can not be treated as "number" because the max safe integer in javascript is 2^53 - 1. https://chromium.googlesource.com/chromium/src/third_party/+/refs/heads/main/protobuf/js/binary/decoder.js?autodive=0%2F%2F#540
I found this issue in the protobuf repo: protocolbuffers/protobuf#3666 (comment) they recommend to use
message dummy { uint64 bigInt = 1; [jstype = JS_STRING] }
The text was updated successfully, but these errors were encountered:
youkaicountry
Successfully merging a pull request may close this issue.
Javascript has an issue with uint64. They can not be treated as "number" because the max safe integer in javascript is 2^53 - 1.
https://chromium.googlesource.com/chromium/src/third_party/+/refs/heads/main/protobuf/js/binary/decoder.js?autodive=0%2F%2F#540
I found this issue in the protobuf repo: protocolbuffers/protobuf#3666 (comment) they recommend to use
The text was updated successfully, but these errors were encountered: