Skip to content

Commit

Permalink
fixed a potential bug in the typeHelper library
Browse files Browse the repository at this point in the history
  • Loading branch information
supernomad committed Jun 26, 2015
1 parent 4c5d476 commit 084dc68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/helpers/typeHelper.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function doesExist(obj) {
return obj != null && obj != undefined;
return obj !== null && obj !== undefined;
}

function isObject(obj) {
Expand Down

0 comments on commit 084dc68

Please sign in to comment.