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
Hi,
stumbled upon a new equality issue
Option.of(Vector.of(12, 2674)).equals(Option.of(null))
yields true
i'm on "prelude-ts": "1.0.5"
"prelude-ts": "1.0.5"
The text was updated successfully, but these errors were encountered:
well, that's very crappy. I'll fix it tonight my time. I see the problem...
if (obj === null != obj2 === null) { return false; }
due to operator priority the bracketing was wrong...
if ((obj === null) != (obj2 === null)) { return false; }
this fixes it. I'll push and release tonight.
Sorry, something went wrong.
5fb124e
I have now released 1.0.6 on npm. Sorry for the bad bug 😬
No branches or pull requests
Hi,
stumbled upon a new equality issue
Option.of(Vector.of(12, 2674)).equals(Option.of(null))
yields true
i'm on
"prelude-ts": "1.0.5"
The text was updated successfully, but these errors were encountered: