stash/pkg/utils/boolean.go
2019-02-14 15:42:52 -08:00

8 lines
73 B
Go

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