UNPKG

lib-curses

Version:

Simple node.js library for work with console

12 lines (11 loc) 231 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.hideCursor = hideCursor; /** * Hides terminal cursor. * * @returns {void} */ function hideCursor() { process.stdout.write('\x1b[?25l'); }