heroku-kafka
Version:
heroku plugin to manage heroku kafka
15 lines (12 loc) • 415 B
JavaScript
const cli = require('@heroku/heroku-cli-util')
module.exports = function (current, total, width = 10) {
let percentage = current / total
if (percentage > 1) percentage = 1
if (percentage < 0) percentage = 0
const filled = Math.floor(percentage * width)
const empty = width - filled
let output = cli.color.blue('█'.repeat(filled))
output += '·'.repeat(empty)
return `[${output}]`
}