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
is it possible to compare 2 json objects and only compare the key names, rather than the values ?
for example
var a = { foo: 'bar', baz:true} var b = { foo: 'boo', bingo:false}
if I compare b with a, I would like to get that baz has been added, bingo removed and ignore foo
in this event, I want b to end up being
{ foo: 'boo', baz:true }
The text was updated successfully, but these errors were encountered:
Thanks for the question, @jmls. I've opened #23 to track the ability to support this.
Sorry, something went wrong.
No branches or pull requests
is it possible to compare 2 json objects and only compare the key names, rather than the values ?
for example
if I compare b with a, I would like to get that baz has been added, bingo removed and ignore foo
in this event, I want b to end up being
{ foo: 'boo', baz:true }
The text was updated successfully, but these errors were encountered: