inferno-shared
Advanced tools
Comparing version 9.0.1 to 9.0.2
@@ -14,6 +14,6 @@ (function (global, factory) { | ||
function isNullOrUndef(o) { | ||
return o === undefined || o === null; | ||
return o === void 0 || o === null; | ||
} | ||
function isInvalid(o) { | ||
return o === null || o === false || o === true || o === undefined; | ||
return o === null || o === false || o === true || o === void 0; | ||
} | ||
@@ -33,3 +33,3 @@ function isFunction(o) { | ||
function isUndefined(o) { | ||
return o === undefined; | ||
return o === void 0; | ||
} | ||
@@ -36,0 +36,0 @@ function throwError(message) { |
{ | ||
"name": "inferno-shared", | ||
"version": "9.0.1", | ||
"version": "9.0.2", | ||
"license": "MIT", | ||
@@ -44,3 +44,3 @@ "type": "module", | ||
}, | ||
"gitHead": "61f772aba67006eac8292502d24cee4d389b924c" | ||
"gitHead": "e93765c9947aafd0fe6b0b479e1d70c06e08e8c1" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
14112