You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 263B

1234567891011
  1. import process from 'node:process';
  2. import onetime from 'onetime';
  3. import signalExit from 'signal-exit';
  4. const restoreCursor = onetime(() => {
  5. signalExit(() => {
  6. process.stderr.write('\u001B[?25h');
  7. }, {alwaysLast: true});
  8. });
  9. export default restoreCursor;