Files
stash/pkg/utils/boolean.go
Stash Dev b488c1ed7d Reorg
2019-02-14 15:42:52 -08:00

9 lines
73 B
Go

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