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

Tree @e7bb7d4 (Download .tar.gz)

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