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

justtee

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

justtee - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

11

justtee.js

@@ -17,7 +17,12 @@ #! /usr/bin/env node

stdin.on('error', (err) => console.error('Error on stdin:', err));
stdout.on('error', (err) => console.error('Error on stdout:', err));
fileStream.on('error', (err) => console.error('Error on fileStream:', err));
function errHandler(name, err) {
console.error(name, err);
process.exit(1);
}
stdin.on('error', (err) => errHandler('stdin', err));
stdout.on('error', (err) => errHandler('stdout', err));
fileStream.on('error', (err) => errHandler('fileStream', err));
stdin.pipe(stdout);
stdin.pipe(fileStream);
{
"name": "justtee",
"version": "1.0.3",
"version": "1.0.4",
"description": "Just tee, a minimal replacement for unix tee",

@@ -5,0 +5,0 @@ "preferGlobal": true,

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