Socket
Socket
Sign inDemoInstall

sisteransi

Package Overview
Dependencies
0
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.3 to 1.0.4

2

package.json
{
"name": "sisteransi",
"version": "1.0.3",
"version": "1.0.4",
"description": "ANSI escape codes for some terminal swag",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -11,15 +11,15 @@ export const beep: string;

export function to(x: number, y: number): string;
export function to(x: number, y?: number): string;
export function move(x: number, y: number): string;
export function up(count: number): string;
export function down(count: number): string;
export function forward(count: number): string;
export function backward(count: number): string;
export function nextLine(count: number): string;
export function prevLine(count: number): string;
export function up(count?: number): string;
export function down(count?: number): string;
export function forward(count?: number): string;
export function backward(count?: number): string;
export function nextLine(count?: number): string;
export function prevLine(count?: number): string;
}
export namespace scroll {
export function up(count: number): string;
export function down(count: number): string;
export function up(count?: number): string;
export function down(count?: number): string;
}

@@ -33,5 +33,5 @@

export function up(count: number): string;
export function down(count: number): string;
export function up(count?: number): string;
export function down(count?: number): string;
export function lines(count: number): string;
}
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