1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/restore-cursor/index.js

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');
});
});