aboutsummaryrefslogtreecommitdiff
path: root/node_modules/hide-terminal-cursor/index.js
blob: dd37dcb4e4077a7d3fb2e920e4cd3a7a3249ef76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"use strict";

var csi = require("control-sequence-introducer")

function hideCursorString() {
  return csi + "?25l"
}

function hideCursor() {
  process.stdout.write(hideCursorString())
}

module.exports = hideCursor;