github-pages-deploy-action/node_modules/restore-cursor/index.js

10 lines
215 B
JavaScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
'use strict';
const onetime = require('onetime');
const signalExit = require('signal-exit');
module.exports = onetime(() => {
signalExit(() => {
2020-03-31 20:40:00 +08:00
process.stderr.write('\u001B[?25h');
2020-03-07 11:45:40 +08:00
}, {alwaysLast: true});
});