Skip to content

Instantly share code, notes, and snippets.

@tarzak
Created September 4, 2015 06:51
Show Gist options
  • Save tarzak/b316eacac5cf9cd45923 to your computer and use it in GitHub Desktop.
Save tarzak/b316eacac5cf9cd45923 to your computer and use it in GitHub Desktop.
function compareTwoObjects (objOne, objTwo) {
var property
, checker = true
;
for (property in objTwo) {
if (!objOne[property] || objTwo[property] !== objOne[property] ) {
checker = false;
return checker;
}
}
return checker;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment