botbuilder-stdlib
Advanced tools
Comparing version 4.12.0-dev-20210113.252531097085 to 4.12.0-dev-20210115.16d34c4f49e3
@@ -395,3 +395,3 @@ "use strict"; | ||
function isObject(val) { | ||
return typeof val === 'object' && !isArray(val); | ||
return !isNil(val) && typeof val === 'object' && !isArray(val); | ||
} | ||
@@ -398,0 +398,0 @@ /** |
@@ -5,3 +5,3 @@ { | ||
"description": "BotBuilder shared libraries, internal only", | ||
"version": "4.12.0-dev-20210113.252531097085", | ||
"version": "4.12.0-dev-20210115.16d34c4f49e3", | ||
"internal": true, | ||
@@ -8,0 +8,0 @@ "license": "MIT", |
@@ -454,3 +454,3 @@ // Copyright (c) Microsoft Corporation. | ||
function isObject(val: unknown): val is object { | ||
return typeof val === 'object' && !isArray(val); | ||
return !isNil(val) && typeof val === 'object' && !isArray(val); | ||
} | ||
@@ -457,0 +457,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
97672