Skip to content

Instantly share code, notes, and snippets.

@raphaklaus
Created March 30, 2016 18:47
Show Gist options
  • Save raphaklaus/7b3c95346ba424cc735bc88bf4f14950 to your computer and use it in GitHub Desktop.
Save raphaklaus/7b3c95346ba424cc735bc88bf4f14950 to your computer and use it in GitHub Desktop.
cli-spinner bug
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