b0bf870ee1a31178d6290a9554c0fc90df3b57603080a97270e02c04fe3523ce8dbdf326896f1685df3bc88c5a9cd30097368044fa140dc7136d5bb1de9cee 497 B

1234567891011121314151617181920212223242526
  1. # restore-cursor [![Build Status](https://travis-ci.org/sindresorhus/restore-cursor.svg?branch=master)](https://travis-ci.org/sindresorhus/restore-cursor)
  2. > Gracefully restore the CLI cursor on exit
  3. Prevent the cursor you've hidden interactively from remaining hidden if the process crashes.
  4. ## Install
  5. ```
  6. $ npm install restore-cursor
  7. ```
  8. ## Usage
  9. ```js
  10. const restoreCursor = require('restore-cursor');
  11. restoreCursor();
  12. ```
  13. ## License
  14. MIT © [Sindre Sorhus](https://sindresorhus.com)