mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-09-15 04:17:22 +00:00
10 lines
215 B
JavaScript
10 lines
215 B
JavaScript
'use strict';
|
|
const onetime = require('onetime');
|
|
const signalExit = require('signal-exit');
|
|
|
|
module.exports = onetime(() => {
|
|
signalExit(() => {
|
|
process.stderr.write('\u001B[?25h');
|
|
}, {alwaysLast: true});
|
|
});
|