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

Tree @a64a4a9 (Download .tar.gz)

width.go @a64a4a9raw · 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
}