Skip to content

Commit

Permalink
Fixes jashkenas#734 -- meaningless hypothetical non-tweak to isElemen…
Browse files Browse the repository at this point in the history
…t ;)
  • Loading branch information
jashkenas committed Sep 20, 2012
1 parent b83b68e commit ab31329
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion underscore.js
Expand Up @@ -905,7 +905,7 @@

// Is a given value a DOM element?
_.isElement = function(obj) {
return !!(obj && obj.nodeType == 1);
return !!(obj && obj.nodeType === 1);
};

// Is a given value an array?
Expand Down

0 comments on commit ab31329

Please sign in to comment.