Socket
Socket
Sign inDemoInstall

ansi-escapes

Package Overview
Dependencies
1
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.1.0 to 6.2.0

10

index.d.ts

@@ -203,2 +203,12 @@ /* eslint-disable @typescript-eslint/member-ordering */

/**
Enter the [alternative screen](https://terminalguide.namepad.de/mode/p47/).
*/
enterAlternativeScreen: string;
/**
Exit the [alternative screen](https://terminalguide.namepad.de/mode/p47/), assuming `enterAlternativeScreen` was called before.
*/
exitAlternativeScreen: string;
/**
Output a beeping sound.

@@ -205,0 +215,0 @@ */

3

index.js

@@ -100,2 +100,5 @@ import process from 'node:process';

ansiEscapes.enterAlternativeScreen = ESC + '?1049h';
ansiEscapes.exitAlternativeScreen = ESC + '?1049l';
ansiEscapes.beep = BEL;

@@ -102,0 +105,0 @@

2

package.json
{
"name": "ansi-escapes",
"version": "6.1.0",
"version": "6.2.0",
"description": "ANSI escape codes for manipulating the terminal",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -137,2 +137,10 @@ # ansi-escapes

### enterAlternativeScreen
Enter the [alternative screen](https://terminalguide.namepad.de/mode/p47/).
### exitAlternativeScreen
Exit the [alternative screen](https://terminalguide.namepad.de/mode/p47/), assuming `enterAlternativeScreen` was called before.
### beep

@@ -139,0 +147,0 @@

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc