Skip to main content
Module

x/ansi/scroll.ts

ANSI escape codes for manipulating the terminal
Latest
File
import { ESC } from "./constants.ts";
/** Scroll display up one line. */export function scrollUp(): string { return ESC + "S";}
/** Scroll display down one line. */export function scrollDown(): string { return ESC + "T";}