Files
stash/utils/boolean.go
2019-02-14 14:53:32 -08:00

9 lines
73 B
Go

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