Skip to content

Commit

Permalink
Help
Browse files Browse the repository at this point in the history
  • Loading branch information
florian-obernberger committed Jun 2, 2022
1 parent c6b12a4 commit d040b39
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions query.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,8 @@ func strEndsWith(x, y interface{}) (bool, error) {
func in(x, y interface{}) (bool, error) {
if yv, ok := y.([]string); ok {
for _, v := range yv {
fmt.Printf("vy: %s\n", v)
fmt.Printf("x: %s\n", x)
if ok, _ := eq(x, v); ok {
return true, nil
}
Expand Down

0 comments on commit d040b39

Please sign in to comment.