Spaces:
Runtime error
Runtime error
File size: 77 Bytes
215df2f |
1 2 3 4 5 6 |
package utils
func IsBool(bs ...bool) bool {
return len(bs) > 0 && bs[0]
}
|