mirror of
https://github.com/AlchemillaHQ/Sylve.git
synced 2026-06-20 01:46:58 +03:00
10 lines
93 B
Go
10 lines
93 B
Go
package utils
|
|
|
|
func PtrToBool(b *bool) bool {
|
|
if b == nil {
|
|
return false
|
|
}
|
|
|
|
return *b
|
|
}
|