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

Tree @c2b1cca (Download .tar.gz)

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