webhook/vendor/github.com/clbanning/mxj/exists.go
Cameron Moore 3463804a7c Add XML payload support
Fixes #238
2019-12-24 15:58:49 -06:00

7 lines
188 B
Go

package mxj
// Checks whether the path exists
func (mv Map) Exists(path string, subkeys ...string) bool {
v, err := mv.ValuesForPath(path, subkeys...)
return err == nil && len(v) > 0
}