node/tools/eslint/node_modules/cli-cursor
cjihrig ba73a67d45 tools: update to ESLint 4.10.0
PR-URL: https://github.com/nodejs/node/pull/16738
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
2017-12-13 16:59:02 +00:00
..
index.js tools: update ESLint to v4.0.0 2017-06-21 22:43:32 +02:00
license
package.json tools: update to ESLint 4.10.0 2017-12-13 16:59:02 +00:00
readme.md tools: update ESLint to v4.0.0 2017-06-21 22:43:32 +02:00

cli-cursor Build Status

Toggle the CLI cursor

The cursor is gracefully restored if the process exits.

Install

$ npm install --save cli-cursor

Usage

const cliCursor = require('cli-cursor');

cliCursor.hide();

const unicornsAreAwesome = true;
cliCursor.toggle(unicornsAreAwesome);

API

.show([stream])

.hide([stream])

.toggle(force, [stream])

force is useful to show or hide the cursor based on a boolean.

stream

Type: Stream
Default: process.stderr

License

MIT © Sindre Sorhus