Skip to content

Commit

Permalink
Oops, fixing mixed spaces and tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Mar 23, 2014
1 parent 5d52e87 commit 34f6860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ module.exports = function isEqual(value, other) {
}

if (type === objType) {
if (value.isPrototypeOf(other) || other.isPrototypeOf(value)) { return false; }
if (value.isPrototypeOf(other) || other.isPrototypeOf(value)) { return false; }
if (getPrototypeOf(value) !== getPrototypeOf(other)) { return false; }
var key;
for (key in value) {
Expand Down

0 comments on commit 34f6860

Please sign in to comment.