UNPKG

lib-curses

Version:

Simple node.js library for work with console

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