Skip to content

Commit

Permalink
minor linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jrit committed May 19, 2017
1 parent 194ddf8 commit d3a12ae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/property.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ Property.prototype.compareFunc = function(property) {

Property.prototype.compare = function(property) {
var winner = this.compareFunc(property);
if (winner === 1) return this;
if (winner === 1) {
return this;
}
return property;
};

Expand Down

0 comments on commit d3a12ae

Please sign in to comment.