Created
March 30, 2016 18:47
-
-
Save raphaklaus/7b3c95346ba424cc735bc88bf4f14950 to your computer and use it in GitHub Desktop.
cli-spinner bug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Spinner = require('cli-spinner').Spinner; | |
var downloadSpinner = new Spinner('Downloading.. %s'); | |
downloadSpinner.setSpinnerString('|/-\\'); | |
downloadSpinner.start(); | |
var sum = 0; | |
for (var i=1;i<999000000;i++){ | |
sum = sum * i / sum; | |
} | |
setTimeout(() => { | |
downloadSpinner.stop(true) | |
},2000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment