gitlab.com/evatix-go/core@v1.3.55/issetter/GetBool.go (about)

     1  package issetter
     2  
     3  func GetBool(
     4  	isCondition bool,
     5  ) Value {
     6  	if isCondition {
     7  		return True
     8  	}
     9  
    10  	return False
    11  }