7 lines
211 B
JavaScript
7 lines
211 B
JavaScript
![]() |
|
||
|
// cli-progress legacy style as of 1.x
|
||
|
module.exports = {
|
||
|
format: ' \u001b[90m{bar}\u001b[0m {percentage}% | ETA: {eta}s | {value}/{total}',
|
||
|
barCompleteChar: '\u2588',
|
||
|
barIncompleteChar: '\u2591'
|
||
|
};
|