athunderx / pkg /utils /bool.go
Mr.L
feat: add full alist source code for Docker build
7107f0b
raw
history blame contribute delete
77 Bytes
package utils
func IsBool(bs ...bool) bool {
return len(bs) > 0 && bs[0]
}