Files
Monkey-Test/WebDriverAgent/Inspector/node_modules/restore-cursor/index.js
T
2019-01-25 17:01:52 +08:00

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