-
Notifications
You must be signed in to change notification settings - Fork 864
New issue
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
Property 0 not found. for Object('z').propertyIsEnumerable(0); Since 1.7.7.2 #415
Comments
Looks like the offending likes are 181-182 6f0f1f6#diff-2cf4f04515b67f4b403268e8a639d956R181 In pre 1.7.7.2 |
|
|
When checking property enumerability _(`Object.prototype.propertyIsEnumerable`)_, missing properties should return `false` instead of throwing a `Property {0} not found.` exception. Fixes mozilla#415
When checking property enumerability _(`Object.prototype.propertyIsEnumerable`)_ on a `String`, missing properties should return `false` instead of throwing a `Property {0} not found.` exception. Fixes mozilla#415
When checking property enumerability _(`Object.prototype.propertyIsEnumerable`)_ on a `String`, missing properties should return `false` instead of throwing a `Property {0} not found.` exception. Fixes #415
Since 1.7.7.2 I believe this commit 6f0f1f6
the following code is throwing a
Property X not found.
error.Happens to be used in Babel/Core-js here: https://github.com/zloirock/core-js/blob/master/modules/_iobject.js
The text was updated successfully, but these errors were encountered: