nx-js / observer-util

Transparent reactivity with 100% language coverage. Made with ❤️ and ES6 Proxies.
MIT License
1.2k stars 94 forks source link

[question] No plan to support IE? #3

Closed akhoury closed 8 years ago

akhoury commented 8 years ago

it is a pain in the a$$, I know, but it is possible with a shim, even ie8 :p

solkimicreb commented 8 years ago

It is not possible sadly.

The repo relies heavily on ES6 proxies, which can't be fully polyfilled. Adding hooks on dynamically added (expando) properties is something that is impossible without proxies.

The only chance of supporting IE is by them adding Proxy support, which definitely won't happen ):

akhoury commented 8 years ago

Adding hooks on dynamically added (expando) properties is something that is impossible without proxies.

true. Thanks