Files
path/in.go

6 lines
122 B
Go
Raw Permalink Normal View History

2023-04-20 18:01:36 +00:00
package path
func In(obj any, path string, matchStr string) (bool, error) {
return opList(obj, path, matchStr, equal)
}