-
Notifications
You must be signed in to change notification settings - Fork 149
Description
When hashing a (class based) object with a getter, object-hash try to get the actual property value, while in fact it's calculated. So when doing it with ws WebSocket class, it goes to its prototype and finally to the extensions getter, throwsing an exception because this._extensions is undefined since its initialized in its constructor. Here we have several alternatives:
- consider the exception as the property value, and serialize it
- swallow the exception, and ignore the property
- detect it's a property getter with getOwnPropertyDescriptor, and serialize its function with a
getter:prefix
I think the best option is the last one, since it's the most attached to the code. Since we are using Object.keys(), there would not be overlap with getters set at prototype or class level, and the place to check and serialize the getter with the getter: prefix and the serialized getter function object should be in place of fetching its value when accesing to the object attributes values.