Codebase list golang-github-vbauerster-mpb / 151a538 internal / width.go
151a538

Tree @151a538 (Download .tar.gz)

width.go @151a538raw · history · blame

1
2
3
4
5
6
7
8
package internal

func CalcWidthForBarFiller(reqWidth, available int) int {
	if reqWidth <= 0 || reqWidth >= available {
		return available
	}
	return reqWidth
}