gitextract_pw5i5pga/ ├── .github/ │ └── workflows/ │ └── test.yml ├── .gitignore ├── .golangci.yml ├── LICENSE ├── arrays.go ├── arrays_test.go ├── benchmark/ │ ├── README.md │ ├── bench │ └── benchmark_test.go ├── codecov.yml ├── comp.go ├── comp_test.go ├── go.mod ├── go.sum ├── internal/ │ ├── javascript/ │ │ ├── javascript.go │ │ └── javascript_test.go │ ├── json_logic_pr_48_tests.json │ ├── testing.go │ └── typing/ │ ├── typing.go │ └── typing_test.go ├── issues_test.go ├── jsonlogic.go ├── jsonlogic_test.go ├── lists.go ├── lists_test.go ├── logic.go ├── math.go ├── math_test.go ├── operation.go ├── operation_test.go ├── readme.md ├── strings.go ├── strings_test.go ├── validator.go ├── validator_test.go ├── vars.go └── vars_test.go