UNPKG

263 BJavaScriptView Raw
1import process from 'node:process';
2import onetime from 'onetime';
3import signalExit from 'signal-exit';
4
5const restoreCursor = onetime(() => {
6 signalExit(() => {
7 process.stderr.write('\u001B[?25h');
8 }, {alwaysLast: true});
9});
10
11export default restoreCursor;