Select Git revision
-
Md. Alim Ul Karim authored
v0.9.0
Md. Alim Ul Karim authoredv0.9.0
BytesTrueFunc.go 158 B
package conditional
func BytesTrueFunc(
isTrue bool,
trueValueFunc func() []byte,
) []byte {
if !isTrue {
return []byte{}
}
return trueValueFunc()
}