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

rabbitmq-eventemitter

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rabbitmq-eventemitter - npm Package Compare versions

Comparing version 1.3.0 to 1.3.1

6

index.js

@@ -126,5 +126,5 @@ var util = require('util');

var queueName = this._queueName(pattern);
var exchangeOptions = this._exchangeOptions;
var queueOptions = extend(this._queueOptions, options.queueOptions);
var queueName = this._queueName(queueOptions.namespace, pattern);

@@ -212,4 +212,4 @@ this._getConsumeChannel(function(err, channel) {

Queue.prototype._queueName = function(pattern) {
return this._queueOptions.namespace + '.' + pattern;
Queue.prototype._queueName = function(namespace, pattern) {
return namespace + '.' + pattern;
};

@@ -216,0 +216,0 @@

{
"name": "rabbitmq-eventemitter",
"version": "1.3.0",
"version": "1.3.1",
"description": "Simplified rabbitmq events",

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

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