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

devicestack

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

devicestack - npm Package Compare versions

Comparing version 1.10.5 to 1.10.6

9

lib/connection.js

@@ -282,2 +282,3 @@ var EventEmitter2 = require('eventemitter2').EventEmitter2,

self.dequeueCommand(command);
console.log(e.stack);
throw e;

@@ -300,2 +301,3 @@ }

self.dequeueCommand(command);
console.log(err.stack);
throw err;

@@ -325,2 +327,3 @@ }

this.dequeueCommand(command);
console.log(err.stack);
throw err;

@@ -338,3 +341,5 @@ }

Connection.prototype.sendCommand = function(command, callback) {
throw new Error('Implement the sendCommand function!');
var err = new Error('Implement the sendCommand function!');
console.log(err.stack);
throw err;
// this.frameHandler.send(command.data);

@@ -429,2 +434,3 @@ };

if (self.log) self.log(e.name + ' while calling callback of task: ' + task.constructor.name + '!' + addon);
console.log(e.stack);
throw e;

@@ -458,2 +464,3 @@ }

this.dequeueTask(task);
console.log(err.stack);
throw err;

@@ -460,0 +467,0 @@ }

2

package.json
{
"name": "devicestack",
"version": "1.10.5",
"version": "1.10.6",
"description": "This module helps you to represent a device and its protocol.",

@@ -5,0 +5,0 @@ "private": false,

@@ -934,2 +934,2 @@ <pre>

OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
THE SOFTWARE.

@@ -0,1 +1,4 @@

#### v1.10.6
- connection: try to console log if error is throwing
#### v1.10.5

@@ -2,0 +5,0 @@ - use fix dependency versions

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