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

sync-rpc

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sync-rpc - npm Package Compare versions

Comparing version 1.3.1 to 1.3.2

8

lib/index.js

@@ -124,5 +124,5 @@ 'use strict';

' failed:\n' +
res.stdout.toString() +
(res.stdout && res.stdout.toString()) +
'\n' +
res.stderr.toString()
(res.stderr && res.stderr.toString())
);

@@ -137,5 +137,5 @@ }

' failed:\n' +
res.stdout.toString() +
(res.stdout && res.stdout).toString() +
'\n' +
res.stderr.toString()
(res.stderr && res.stderr).toString()
);

@@ -142,0 +142,0 @@ }

{
"name": "sync-rpc",
"version": "1.3.1",
"version": "1.3.2",
"main": "lib/index.js",

@@ -5,0 +5,0 @@ "description": "Run asynchronous commands synchronously by putting them in a separate process",

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