inferno-shared
Advanced tools
@@ -14,6 +14,6 @@ (function (global, factory) { | ||
function isNullOrUndef(o) { | ||
return o === void 0 || o === null; | ||
return o === undefined || o === null; | ||
} | ||
function isInvalid(o) { | ||
return o === null || o === false || o === true || o === void 0; | ||
return o === null || o === false || o === true || o === undefined; | ||
} | ||
@@ -33,3 +33,3 @@ function isFunction(o) { | ||
function isUndefined(o) { | ||
return o === void 0; | ||
return o === undefined; | ||
} | ||
@@ -36,0 +36,0 @@ function throwError(message) { |
{ | ||
"name": "inferno-shared", | ||
"version": "9.0.0-alpha.2", | ||
"version": "9.0.0-alpha.3", | ||
"license": "MIT", | ||
@@ -24,3 +24,5 @@ "type": "module", | ||
"require": "./index.cjs" | ||
} | ||
}, | ||
"./dist/index.dev.mjs": "./dist/index.dev.mjs", | ||
"./dist/index.mjs": "./dist/index.mjs" | ||
}, | ||
@@ -42,3 +44,3 @@ "module": "dist/index.mjs", | ||
}, | ||
"gitHead": "5df76afa8932d05ee02ce9ce6de47ede52f569d6" | ||
"gitHead": "b242af50261bfe56d5bd4a2b060dcef86b074444" | ||
} |
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
Sorry, the diff of this file is not supported yet
14120
0.89%