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

Tree @858658a (Download .tar.gz)

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