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
Apparently it is recommended to replace obj.hasOwnProperty(name) with a more cumbersome equivalent:
obj.hasOwnProperty(name)
Object.prototype.hasOwnProperty.call(obj, name)
It prevents potential shadowing of hasOwnProperty().
hasOwnProperty()
This method is used by dcl extensively, and it should be evaluated, if some uses should be converted.
dcl
The text was updated successfully, but these errors were encountered:
374bd9a
uhop
No branches or pull requests
Apparently it is recommended to replace
obj.hasOwnProperty(name)
with a more cumbersome equivalent:It prevents potential shadowing of
hasOwnProperty()
.This method is used by
dcl
extensively, and it should be evaluated, if some uses should be converted.The text was updated successfully, but these errors were encountered: