版博士V2.0程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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)