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

Tree @c49446b (Download .tar.gz)

width.go @c49446braw · history · blame

1
2
3
4
5
6
7
8
package internal

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