readd KeyExists expr helper (#2180)

This commit is contained in:
blotus 2023-05-04 16:55:34 +02:00 committed by GitHub
parent a753ea6981
commit e1f4a71357
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -377,6 +377,13 @@ var exprFuncs = []exprCustomFunc{
new(func(string, string) bool),
},
},
{
name: "KeyExists",
function: KeyExists,
signature: []interface{}{
new(func(string, map[string]any) bool),
},
},
{
name: "LogInfo",
function: LogInfo,