You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The idea is to implement a new method called remove that receives a spinner reference name as argument and removes that spinner from the list, and thus should not be printed again in the terminal If no reference is given, the method call does nothing.
Example usage:
constspinnies=newSpinnies();spinnies.add('spinner-1');spinnies.add('spinner-2');spinnies.add('spinner-3');setTimeout(()=>{spinnies.remove('spinner-2');},3000);// => should remove the second spinner and not print it again.
The text was updated successfully, but these errors were encountered:
Yes, I just want to finish implementing custom statuses, hide and unhide spinners, write some more tests and maybe some other features before I open the PR..
The idea is to implement a new method called
remove
that receives a spinner reference name as argument and removes that spinner from the list, and thus should not be printed again in the terminal If no reference is given, the method call does nothing.Example usage:
The text was updated successfully, but these errors were encountered: