New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

uuws

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uuws - npm Package Compare versions

Comparing version 0.6.6 to 0.7.1

2

package.json
{
"name": "uuws",
"version": "0.6.6",
"version": "0.7.1",
"scripts": {

@@ -5,0 +5,0 @@ "install": "node-gyp rebuild > build_log.txt 2>&1 || exit 0"

@@ -127,7 +127,10 @@ 'use strict';

this.onmessage = noop;
} else if (!eventName || eventName === 'close') {
}
if (!eventName || eventName === 'close') {
this.onclose = noop;
} else if (!eventName || eventName === 'ping') {
}
if (!eventName || eventName === 'ping') {
this.onping = noop;
} else if (!eventName || eventName === 'pong') {
}
if (!eventName || eventName === 'pong') {
this.onpong = noop;

@@ -148,10 +151,7 @@ }

this.onmessage = noop;
}
if (eventName === 'close' && this.onclose === cb) {
} else if (eventName === 'close' && this.onclose === cb) {
this.onclose = noop;
}
if (eventName === 'ping' && this.onping === cb) {
} else if (eventName === 'ping' && this.onping === cb) {
this.onping = noop;
}
if (eventName === 'pong' && this.onpong === cb) {
} else if (eventName === 'pong' && this.onpong === cb) {
this.onpong = noop;

@@ -158,0 +158,0 @@ }

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