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
Maybe I am doing something incorrectly but having an object like
obj = { prop1 : { prop2 : { prop3: value, prop4: value, } } }
Will push the props2 up a level, it doesn't nest deeper than 1 level. It will become
props2
obj = { prop1 : { }, prop2 : { prop3: value, prop4: value, } }
Any way around this behavior?
The text was updated successfully, but these errors were encountered:
I'm not able to reproduce this behavior using the latest version.
Sorry, something went wrong.
No branches or pull requests
Maybe I am doing something incorrectly but having an object like
Will push the
props2
up a level, it doesn't nest deeper than 1 level. It will becomeAny way around this behavior?
The text was updated successfully, but these errors were encountered: