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
Couple of issues I encountered when using this library in my project:
isNumber - returns false for javascript numeric values: -Infinity & Infinity and for numbers created using new Number(..) wrapper;
isNumber
false
-Infinity & Infinity
new Number(..)
isBoolean & isString returns false for objects created using new keywords. i.e., new String('asdf') & new Boolean()
isBoolean
isString
new String('asdf') & new Boolean()
@flexdinesh, please let me know if this need to be handled
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Couple of issues I encountered when using this library in my project:
isNumber
- returnsfalse
for javascript numeric values:-Infinity & Infinity
and for numbers created usingnew Number(..)
wrapper;isBoolean
&isString
returnsfalse
for objects created using new keywords.i.e.,
new String('asdf') & new Boolean()
@flexdinesh, please let me know if this need to be handled
The text was updated successfully, but these errors were encountered: