UNPKG
lib-curses
Version:
latest (0.2.0)
0.2.0
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.1
Simple node.js library for work with console
github.com/fwmakc/lib-curses
fwmakc/lib-curses
lib-curses
/
src
/
helpers
/
clear_screen.helper.ts
10 lines
(9 loc)
•
214 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * Clears terminal screen and moves cursor to top-left corner. * *
@returns
{
void
} */
export
function
clearScreen
(
):
void
{ process.
stdout
.
write
(
'\x1b[2J'
); process.
stdout
.
write
(
'\x1b[0;0H'
); }