carriage-return
Small utility to make use of the carriage-return character, e.g. as a progress indicator.
Usage
Install and save the package to your project npm i --save carriage-return
const cr = ; const delay = ; { // Prints out "I'm not gonna be visible" cr; await ; // Overrides "I'm not gonna be visible" and prints "You just got overridden" without a newline cr; await ; // Just clears the line (without \n) crclear; await ; // Prints "That's it." with a newline cr;};