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

bograch

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bograch - npm Package Compare versions

Comparing version 0.0.7 to 0.0.8

bograch-0.0.8.tgz

2

lib/client.js

@@ -42,3 +42,3 @@ 'use strict';

params = null;
} else if (cb !== null && typeof cb !== 'function') {
} else if (cb !== null && cb !== undefined && typeof cb !== 'function') {
throw new TypeError('Bograch.call has an invalid callback function');

@@ -45,0 +45,0 @@ }

{
"name": "bograch",
"version": "0.0.7",
"version": "0.0.8",
"description": "A communication gateway for NodeJS microservices.",

@@ -5,0 +5,0 @@ "main": "./lib",

@@ -41,2 +41,10 @@ 'use strict';

});
it('should not throw an exception if no callback function passed', function () {
expect(function () {
boClient.call('foo', {
a: 34
});
}).not.to.throw(Error);
});
});

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