Skip to content

Commit df1a2bc

Browse files
committed
added null to the undefined check
1 parent 43106ed commit df1a2bc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/js/protobufUtils/classCreator.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ define([], function() {
33
/**
44
* Returns true if an object is not defined.
55
*
6+
* This is if it is actually equal to undefined OR is null.
7+
*
68
* @param {Object} object - the object that is being tested.
79
* @returns {Boolean} true if the object is not defined. (Only not defined being null will return false)
810
*/
911
var isUndefined = function(object) {
10-
return typeof object === 'undefined';
12+
return typeof object === 'undefined' || object == null;
1113
};
1214

1315
/**

0 commit comments

Comments
 (0)