Skip to content

Instantly share code, notes, and snippets.

@mohayonao
Created May 28, 2015 08:26
Show Gist options
  • Select an option

  • Save mohayonao/d37f3a7d05091c7e25b0 to your computer and use it in GitHub Desktop.

Select an option

Save mohayonao/d37f3a7d05091c7e25b0 to your computer and use it in GitHub Desktop.
function diff(oldObj, newObj) {
return _.omit(newObj, function(value, key) {
return _.isEqual(oldObj[key], value);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment