Skip to content

Instantly share code, notes, and snippets.

@levvsha
Last active August 18, 2016 07:10
Show Gist options
  • Save levvsha/bbad5499dc90e958e9c80d949f493d48 to your computer and use it in GitHub Desktop.
Save levvsha/bbad5499dc90e958e9c80d949f493d48 to your computer and use it in GitHub Desktop.
function(a, b) {
return _.omitBy(a, (value, key) => {
var obj = {};
obj[key] = value;
return _.isEqual(obj, b)
})
}
(a, b) => _.omitBy(a, (value, key) => _.isEqual({[key]: value}, b));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment