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
It might sound weird but only defineProperties checks for own property, the descriptor itself could have properties inherited.
It's a minor thing but for consistency sake of ES5 sham itself, you should change those checks and put in instead 'value' in obj or 'get' in obj and so on.
Take care
The text was updated successfully, but these errors were encountered:
all properties here are checked without following specs.
It might sound weird but only
defineProperties
checks for own property, the descriptor itself could have properties inherited.It's a minor thing but for consistency sake of ES5 sham itself, you should change those checks and put in instead
'value' in obj
or'get' in obj
and so on.Take care
The text was updated successfully, but these errors were encountered: