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
Changing this behavior will break looking up properties from objects that are instantiated from classes:
class A { get z() { return 2}} const b = new A b.z // 2 b.hasOwnProperty('z') // false
Dealing with the __proto__ pollution vulnerability is outside the scope of this lib:
__proto__
f = { foo: 'f' } g = {__proto__: f, bar: 'g'} g.foo // "f" g.bar // "g" g.__proto__ = { cux: 'c' } g.cux // "c" g.foo // undefined
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Changing this behavior will break looking up properties from objects that are instantiated from classes:
Dealing with the
__proto__
pollution vulnerability is outside the scope of this lib:The text was updated successfully, but these errors were encountered: