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

harcon-amqp

Package Overview
Dependencies
Maintainers
1
Versions
197
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

harcon-amqp - npm Package Compare versions

Comparing version 2.1.0 to 2.1.1

11

lib/AmqpBarrel.js

@@ -111,4 +111,2 @@ 'use strict'

amqpbarrel.newEntity = function ( division, context, name, callback) {
if ( this.ins[division] && this.ins[division][name] ) return callback()
if ( !this.ins[division] ) this.ins[division] = []

@@ -118,9 +116,10 @@

let fns = []
if (context)
if (context && !this.ins[division][context] )
fns.push(function (cb) {
self.createIn( division, context, cb )
})
fns.push(function (cb) {
self.createIn( division, name, cb )
})
if (!this.ins[division][name] )
fns.push(function (cb) {
self.createIn( division, name, cb )
})
async.series( fns, callback )

@@ -127,0 +126,0 @@ }

{
"name": "harcon-amqp",
"version": "2.1.0",
"version": "2.1.1",
"description": "AMQP plugin for the harcon messaging/service bus of node-based enterprise entities.",

@@ -27,3 +27,3 @@ "keywords": [

"async": "^1.5.2",
"harcon": "^3.8.0",
"harcon": "^3.8.1",
"rabbit.js": "^0.4.4"

@@ -30,0 +30,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