Files
stash/utils/boolean.go
2019-02-10 23:18:48 -08:00

8 lines
72 B
Go

package utils
func Btoi(b bool) int {
if b {
return 1
}
return 0
}