unadlib / mutative

Efficient immutable updates, 2-6x faster than naive handcrafted reducer, and more than 10x faster than Immer.
http://mutative.js.org/
MIT License
1.53k stars 16 forks source link

Doesn't react-native support proxy in 0.64? #2

Closed ModyQyW closed 1 year ago

ModyQyW commented 1 year ago

In README:

Migration is also not possible for React Native which does not support Proxy.

Doesn't react-native support proxy in 0.64? See https://reactnative.dev/blog/2021/03/12/version-0.64#hermes-with-proxy-support.

unadlib commented 1 year ago

I am sorry for my lack of detail. React Native uses a new JS engine during refactoring - Hermes, and it (if < v0.59 or when using the Hermes engine on React Native < v0.64) does not support Proxy on Android, but like you mentioned, the latest version of Hermes already supports it.

ModyQyW commented 1 year ago

I think better to update README and clarify it.