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
No response
i found piece of code doing null comparison without type safety,
this is what it looks like if (installingWorker == null) { return;} (contentType != null && contentType.indexOf('javascript') === -1)
if (installingWorker == null) { return;
(contentType != null && contentType.indexOf('javascript') === -1)
adding type safety will be better if (installingWorker === null) { return; } (contentType !== null && contentType.indexOf('javascript') === -1)
if (installingWorker === null) { return; }
(contentType !== null && contentType.indexOf('javascript') === -1)
- OS: - Node: - npm:
The text was updated successfully, but these errors were encountered:
@visharma-symbl could you review this issue and give me some feedback
Sorry, something went wrong.
thanks @Akankshabhasin for assigning
Biki-das
Successfully merging a pull request may close this issue.
Contact Details
No response
Is there an existing issue for this?
Current Behavior
i found piece of code doing null comparison without type safety,
this is what it looks like
if (installingWorker == null) { return;
}(contentType != null && contentType.indexOf('javascript') === -1)
Expected Behavior
adding type safety will be better
if (installingWorker === null) { return; }
(contentType !== null && contentType.indexOf('javascript') === -1)
Steps To Reproduce
No response
Environment
What browsers are you seeing the problem on?
No response
Anything else?
No response
The text was updated successfully, but these errors were encountered: