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
function read({a, b, c}) { console.info(a) //ppp console.info(b) //11 } read({a: "ppp", b: 11})
function read({a, b, c}) { console.info(a) //undefined console.info(b) //undefined } read(fromJS({a: "ppp", b: 11}))
Now I have to destruct immutable objects inside the functions and it works prefectly:
function read(obj) { const {a,b} = obj ... }
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
Whyyy!!!? .... :D no seriously why this hasn't been fixed yet?
@hendrul maybe because you haven't submitted your pull request yet?
No branches or pull requests
Now I have to destruct immutable objects inside the functions and it works prefectly:
The text was updated successfully, but these errors were encountered: