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

Tree @2aaf6ca (Download .tar.gz)

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