1
0
mirror of https://github.com/danog/liquid.git synced 2024-11-30 10:19:03 +01:00
liquid/evaluator/drop.go

16 lines
294 B
Go
Raw Normal View History

2017-07-06 05:25:03 +02:00
package evaluator
type drop interface {
ToLiquid() interface{}
}
// ToLiquid converts an object to Liquid, if it implements the Drop interface.
func ToLiquid(value interface{}) interface{} {
switch value := value.(type) {
case drop:
return value.ToLiquid()
default:
return value
}
}