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 Aug 30, 2025. It is now read-only.
Since IE10 does not support setPrototypeOf, prototype properties are copied and arenot writable.
As a workaround I changed Object.defineProperty(proxy, k, {get: getter.bind(target, k)});
to Object.defineProperty(proxy, k, {get: getter.bind(target, k)}, set: setter.bind(target, k));
any reason why you don't allow setting prototype properties?