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

@travetto/terminal

Package Overview
Dependencies
Maintainers
1
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@travetto/terminal - npm Package Compare versions

Comparing version 3.1.0 to 3.1.1

2

package.json
{
"name": "@travetto/terminal",
"version": "3.1.0",
"version": "3.1.1",
"description": "General terminal support",

@@ -5,0 +5,0 @@ "keywords": [

@@ -11,4 +11,3 @@ import type tty from 'tty';

// @ts-expect-error
const queryScript = (function (...bytes) {
const queryScript = (function (...bytes: number[]): void {
const i = process.stdin;

@@ -28,3 +27,3 @@ i.setRawMode(true);

const script = queryScript.toString().replaceAll('\'', '"').replaceAll('\n', '');
const fullScript = `(${script})(${code.split('').map(x => x.charCodeAt(0))})`
const fullScript = `(${script})(${code.split('').map(x => x.charCodeAt(0))})`;
const proc = spawn(process.argv0, ['-e', fullScript], { stdio: [input, output, 2, 'ipc'], detached: true });

@@ -31,0 +30,0 @@ const text = await new Promise<string>((res, rej) => {

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