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
{{ message }}
This repository was archived by the owner on Feb 29, 2024. It is now read-only.
Then the check that fixed issue 50 in r38 will fail since it would use the own property "hasOwnProperty" instead of the Object.prototype.hasOwnProperty function.
Fix by using Object.prototype.hasOwnProperty.call( foobar, key );
instead of foobar.hasOwnProperty( key ); which depends on the fact that the objet itself will never have a property by that name.