1
0
mirror of https://github.com/danog/liquid.git synced 2024-11-26 19:24:45 +01:00
liquid/values/predicates.go
2017-07-27 18:11:37 -04:00

23 lines
439 B
Go

package values
import (
"reflect"
)
// IsEmpty returns a bool indicating whether the value is empty according to Liquid semantics.
func IsEmpty(value interface{}) bool {
value = ToLiquid(value)
if value == nil {
return false
}
r := reflect.ValueOf(value)
switch r.Kind() {
case reflect.Array, reflect.Map, reflect.Slice, reflect.String:
return r.Len() == 0
case reflect.Bool:
return !r.Bool()
default:
return false
}
}