wallet-core/node_modules/restore-cursor/index.js

10 lines
215 B
JavaScript
Raw Normal View History

2017-05-28 00:38:50 +02:00
'use strict';
const onetime = require('onetime');
const signalExit = require('signal-exit');
module.exports = onetime(() => {
signalExit(() => {
process.stderr.write('\u001b[?25h');
}, {alwaysLast: true});
});