hanfish's picture
111
215df2f verified
raw
history blame contribute delete
No virus
77 Bytes
package utils
func IsBool(bs ...bool) bool {
return len(bs) > 0 && bs[0]
}