func-base.go: commented out the param count check

This commit is contained in:
Celestino Amoroso 2024-05-15 22:02:07 +02:00
parent 624318d84e
commit 52ef134be6

View File

@ -10,11 +10,7 @@ import (
)
func isNilFunc(ctx ExprContext, name string, args []any) (result any, err error) {
if len(args) == 1 {
result = args[0] == nil
} else {
err = errOneParam(name)
}
return
}