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

Tree @7ac7c77 (Download .tar.gz)

width.go @7ac7c77raw · history · blame

package internal

// CheckRequestedWidth checks that requested width doesn't overflow
// available width
func CheckRequestedWidth(requested, available int) int {
	if requested < 1 || requested >= available {
		return available
	}
	return requested
}