Socket
Socket
Sign inDemoInstall

linux-device

Package Overview
Dependencies
132
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.0.4 to 2.0.5

2

package.json
{
"name": "linux-device",
"version": "2.0.4",
"version": "2.0.5",
"description": "Native addon to communicate with linux devices (can also be used for sockets or FIFOs)",

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

@@ -31,3 +31,5 @@ "use strict";

if(this._currentFunc) {
await this._currentFunc;
try {
await this._currentFunc;
} catch(e) {}
}

@@ -40,3 +42,5 @@

this._currentFunc = res;
await res;
try {
await res;
} catch(e) {}
if(res === this._currentFunc) this._currentFunc = null;

@@ -43,0 +47,0 @@ return res;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc