mirror of
https://github.com/adnanh/webhook.git
synced 2025-05-11 08:04:44 +00:00
7 lines
188 B
Go
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
|
|
}
|