function progressBar(value, maxValue, size) { const progress = Math.round(size * ((value / maxValue) > 1 ? 1 : (value / maxValue))); const emptyProgress = size - progress > 0 ? size - progress : 0; const progressText = conf.emojis.fill.repeat(progress); const emptyProgressText = conf.emojis.empty.repeat(emptyProgress); return emptyProgress > 0 ? conf.emojis.fillStart+progressText+emptyProgressText+conf.emojis.emptyEnd : conf.emojis.fillStart+progressText+emptyProgressText+conf.emojis.fillEnd; };