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

ricochet

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ricochet - npm Package Compare versions

Comparing version 0.3.12 to 0.3.13

npm-debug.log.3745236381

6

package.json
{
"name": "ricochet",
"version": "0.3.12",
"version": "0.3.13",
"description": "Pub/Sub Framework for building robust TCP transport layers in node.js applications ",

@@ -17,6 +17,6 @@ "main": "ricochet.js",

"async": "2.2.0",
"eventemitter2": "0.4.14",
"lodash": "4.1.0",
"eventemitter2": "4.1.0",
"lodash": "4.17.4",
"json-stream": "1.0.0"
}
}

@@ -271,10 +271,8 @@ 'use strict';

handler.inherit = function(event){
handler.inherit = function(otherHandler){
var self = this;
handler.onAny(function(){
var args = Array.prototype.slice.call(arguments);
args.unshift(this.event);
event.emit.apply(self, args);
otherHandler.emit.apply(self, Array.prototype.slice.call(arguments));
});
};
}

@@ -281,0 +279,0 @@ var timeout = null;

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