We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From Twitter: https://twitter.com/dai_shi/status/1145316559461556225
Just revisited: https://github.com/GoogleChrome/proxy-polyfill and reduxjs/react-redux#1179 Two caveats:
has
ownKeys
get
Suppose state = { counter1: 0 }, with proxy-polyfill:
state = { counter1: 0 }
'counter1' in state
state.counter2
The text was updated successfully, but these errors were encountered:
As in dai-shi/react-tracked#6, we need somebody to try out reactive-react-redux with polyfill.
Sorry, something went wrong.
No branches or pull requests
From Twitter: https://twitter.com/dai_shi/status/1145316559461556225
Just revisited: https://github.com/GoogleChrome/proxy-polyfill and reduxjs/react-redux#1179 Two caveats:
has
andownKeys
handler.get
with existing properties.Suppose
state = { counter1: 0 }
, with proxy-polyfill:'counter1' in state
can't be trapped.state.counter2
can't be trapped.The text was updated successfully, but these errors were encountered: