stash/pkg/utils/boolean.go

10 lines
142 B
Go

package utils
// Btoi transforms a boolean to an int. 1 for true, false otherwise
func Btoi(b bool) int {
if b {
return 1
}
return 0
}