You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ideally, the Object.keys shim should only observe key changes (eg: when a key is added or removed). Currently, it observes value changes too (eg: when a key is set to a new value).
Note: This goes for Map.prototype.keys as well.
The text was updated successfully, but these errors were encountered:
Q: Should using Object.keys on an array observe its length or its sparse indices? Probably the latter, since that's what affects the result of Object.keys.
Ideally, the
Object.keys
shim should only observe key changes (eg: when a key is added or removed). Currently, it observes value changes too (eg: when a key is set to a new value).Note: This goes for
Map.prototype.keys
as well.The text was updated successfully, but these errors were encountered: