We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43106ed commit df1a2bcCopy full SHA for df1a2bc
src/main/js/protobufUtils/classCreator.js
@@ -3,11 +3,13 @@ define([], function() {
3
/**
4
* Returns true if an object is not defined.
5
*
6
+ * This is if it is actually equal to undefined OR is null.
7
+ *
8
* @param {Object} object - the object that is being tested.
9
* @returns {Boolean} true if the object is not defined. (Only not defined being null will return false)
10
*/
11
var isUndefined = function(object) {
- return typeof object === 'undefined';
12
+ return typeof object === 'undefined' || object == null;
13
};
14
15
0 commit comments