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
This update changed how parsing an empty string into BigInt works: d2d29c1#diff-33404997836caa3c602713d04259952721517b81439ca84f263b778837c177bfR44
5.3.0: When you used BigInt(""), it would create a BigInt with a zero value: BigInt(0).
BigInt("")
BigInt(0)
5.4.0: Now, using BigInt("") causes a crash due to a force unwrap
Ideally, the expected behavior should be to return either a zero value or nil.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This update changed how parsing an empty string into BigInt works:
d2d29c1#diff-33404997836caa3c602713d04259952721517b81439ca84f263b778837c177bfR44
5.3.0:
When you used
BigInt("")
, it would create a BigInt with a zero value:BigInt(0)
.5.4.0:
Now, using
BigInt("")
causes a crash due to a force unwrapIdeally, the expected behavior should be to return either a zero value or nil.
The text was updated successfully, but these errors were encountered: