Socket
Socket
Sign inDemoInstall

tcomb

Package Overview
Dependencies
0
Maintainers
1
Versions
74
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.2.9 to 3.2.10

5

CHANGELOG.md

@@ -15,2 +15,7 @@ # Changelog

# 3.2.10
- **Bug Fix**
- handle nully values in interface `is` function (@gcanti)
# 3.2.9

@@ -17,0 +22,0 @@

3

lib/interface.js

@@ -97,2 +97,5 @@ var assert = require('./assert');

Interface.is = function (x) {
if (isNil(x)) {
return false;
}
if (strict) {

@@ -99,0 +102,0 @@ for (var k in x) {

2

package.json
{
"name": "tcomb",
"version": "3.2.9",
"version": "3.2.10",
"description": "Type checking and DDD for JavaScript",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc