Socket
Socket
Sign inDemoInstall

botbuilder-stdlib

Package Overview
Dependencies
Maintainers
1
Versions
411
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

botbuilder-stdlib - npm Package Compare versions

Comparing version 4.12.0-dev-20210113.252531097085 to 4.12.0-dev-20210115.16d34c4f49e3

2

lib/types.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc