Module split

This commit is contained in:
Ian Gulliver
2023-04-20 18:01:36 +00:00
parent e0c92c24fb
commit f50e6e228c
30 changed files with 4293 additions and 0 deletions

5
in.go Normal file
View File

@@ -0,0 +1,5 @@
package path
func In(obj any, path string, matchStr string) (bool, error) {
return opList(obj, path, matchStr, equal)
}