wishthis/node_modules/restore-cursor/index.js

10 lines
215 B
JavaScript
Raw Normal View History

2022-01-21 08:28:41 +00:00
'use strict';
const onetime = require('onetime');
const signalExit = require('signal-exit');
module.exports = onetime(() => {
signalExit(() => {
2022-06-08 10:36:39 +00:00
process.stderr.write('\u001B[?25h');
2022-01-21 08:28:41 +00:00
}, {alwaysLast: true});
});