Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@dynacom/core

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dynacom/core - npm Package Compare versions

Comparing version 1.1.5 to 1.1.6

12

classes/server.js

@@ -34,3 +34,13 @@ const fs = require( 'fs' );

SNICallback: ( domain, callback ) => {
callback( null, this.domains[ domain ].SecureContext );
let domainIndex = 0;
while ( domainIndex < this.domains.length ) {
if ( null == this.domains[ domainIndex ].port || this.domains[ domainIndex ].port.includes( port ) ) {
let domainPattern = null;
if ( domainPattern = this.domains[ domainIndex ].pattern.match( domain ) ) {
break;
}
}
domainIndex++;
}
callback( null, this.domains[ domainIndex ].SecureContext );
}

@@ -37,0 +47,0 @@ , } );

2

package.json

@@ -10,3 +10,3 @@ {

, "name": "@dynacom/core"
, "version": "1.1.5"
, "version": "1.1.6"
, "repository": {

@@ -13,0 +13,0 @@ "type": "git"

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