New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@arcsine/nodesh

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arcsine/nodesh - npm Package Compare versions

Comparing version 1.0.11 to 1.0.12

6

dist/exec.js

@@ -18,8 +18,8 @@ "use strict";

},
async *exec(cmd, args = [], output = 'line') {
async *exec(cmd, args = [], outMode = 'line', inMode = outMode) {
const { proc, result } = exec_1.ExecUtil.exec(cmd, [...args]);
this.stream().pipe(proc.stdin);
yield* stream_1.StreamUtil.readStream(proc.stdout, output);
this.stream(inMode).pipe(proc.stdin);
yield* stream_1.StreamUtil.readStream(proc.stdout, outMode);
await result;
}
});
{
"name": "@arcsine/nodesh",
"version": "1.0.11",
"version": "1.0.12",
"description": "",

@@ -5,0 +5,0 @@ "scripts": {

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