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
throughout the code there are checks like;
const value = typeof variable === "object" ? variable.value : variable;
however, typeof will also result in "object" if value is null in which case the above code will simply fail
typeof
"object"
value
null
I'm considering making a PR in a few days to address this issue
The text was updated successfully, but these errors were encountered:
@thealjey thanks for identifying the issue. Looking forward to the PR.
Sorry, something went wrong.
No branches or pull requests
throughout the code there are checks like;
however,
typeof
will also result in"object"
ifvalue
isnull
in which case the above code will simply fail
I'm considering making a PR in a few days to address this issue
The text was updated successfully, but these errors were encountered: