Your IP : 216.73.216.74


Current Path : /usr/local/lib/node_modules/@google/gemini-cli/node_modules/restore-cursor/
Upload File :
Current File : //usr/local/lib/node_modules/@google/gemini-cli/node_modules/restore-cursor/index.js

import process from 'node:process';
import onetime from 'onetime';
import signalExit from 'signal-exit';

const restoreCursor = onetime(() => {
	signalExit(() => {
		process.stderr.write('\u001B[?25h');
	}, {alwaysLast: true});
});

export default restoreCursor;