progress-bar-formatter
v2.0.1
Published
Progress bar formatter
Downloads
4,652
Readme
progress-bar-formatter
Progress bar formatter
Example
var ProgressBarFormatter = require('progress-bar-formatter');
var bar = new ProgressBarFormatter();
console.log (bar.format(0.4));
// ##########··············
Formatter([options])
Options:
- complete - String
The character that shows completion progress. Default is#
. - incomplete - String
The character that shows the remaining progress. Default is·
. - length - Number
The length of the progress bar. Default is24
.
Formatter#format(progress) : String
Formats the progress bar. progress
is a number between 0 and 1.