blob: 0e84c05b46743f1b8fcad42f0a04c47f45a53925 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
"use strict";
var csi = require("control-sequence-introducer");
function showCursorString() {
return csi + "?25h";
}
function showCursor() {
process.stdout.write(showCursorString())
}
module.exports = showCursor;
|