-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
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
feat: eqq (===) and nee (!==) operators #94
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. @Potherca @kornelski any opinions?
@@ -1350,9 +1350,15 @@ this page has been readed ${page/countRead} times"/> | |||
<code>==</code> : <code>EQ</code> (等しい) | |||
</para></listitem> | |||
<listitem><para> | |||
<code>===</code> : <code>EQQ</code> (厳密に等しい) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No idea how to validate this change 😁
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trust me bro, ai and Google gave me the same result :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't trust either of those sources :-P
<code>!=</code> : <code>NE</code> (等しくない) | ||
</para></listitem> | ||
<listitem><para> | ||
<code>!==</code> : <code>NEE</code> (厳密に等しくない) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No idea how to validate this change 😁
🚢 |
Thanks @jacekkarczmarczyk! |
fixes #93