Socket
Socket
Sign inDemoInstall

intertype

Package Overview
Dependencies
Maintainers
1
Versions
101
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

intertype - npm Package Compare versions

Comparing version 0.113.0 to 0.114.0

11

lib/main.js

@@ -524,3 +524,12 @@ (function() {

is_extension_of(Derived, Base) {
return Derived === Base || Derived.prototype instanceof Base;
var error;
if (Derived === Base) {
return true;
}
try {
return Derived.prototype instanceof Base;
} catch (error1) {
error = error1;
return false;
}
}

@@ -527,0 +536,0 @@

2

package.json
{
"name": "intertype",
"version": "0.113.0",
"version": "0.114.0",
"description": "A JavaScript typechecker",

@@ -5,0 +5,0 @@ "main": "lib/main.js",

Sorry, the diff of this file is not supported yet

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