Files
freeCodeCamp/probot/presolver/node_modules/restore-cursor/index.js
2018-12-05 11:23:55 +05:30

10 lines
197 B
JavaScript

'use strict';
var onetime = require('onetime');
var exitHook = require('exit-hook');
module.exports = onetime(function () {
exitHook(function () {
process.stdout.write('\u001b[?25h');
});
});