jbcarpanelli / spinnies

Node.js module to create and manage multiple spinners in command-line interface programs
MIT License
147 stars 32 forks source link

Fix typo #20

Closed noriyotcp closed 4 years ago

noriyotcp commented 4 years ago

isCursonHidden -> isCursorHidden

Before this fix, isCursonHidden was undefined, so the condition was always true and cliCursor.hide() was called.

After the fix, when isCursorHidden is false, cliCursor.hide() is called.