fix
This commit is contained in:
parent
4e8aa19c09
commit
1df7dab2a4
1 changed files with 9 additions and 1 deletions
|
@ -33,7 +33,15 @@ func EndsWith(s string, suff string) bool {
|
||||||
}
|
}
|
||||||
|
|
||||||
func GetExprEnv(ctx map[string]interface{}) map[string]interface{} {
|
func GetExprEnv(ctx map[string]interface{}) map[string]interface{} {
|
||||||
var ExprLib = map[string]interface{}{"Atof": Atof, "JsonExtract": JsonExtract, "JsonExtractLib": JsonExtractLib, "File": File, "RegexpInFile": RegexpInFile}
|
var ExprLib = map[string]interface{}{
|
||||||
|
"Atof": Atof,
|
||||||
|
"StartsWith": StartsWith,
|
||||||
|
"EndsWith" : EndsWith,
|
||||||
|
"JsonExtract": JsonExtract,
|
||||||
|
"JsonExtractLib": JsonExtractLib,
|
||||||
|
"File": File,
|
||||||
|
"RegexpInFile": RegexpInFile
|
||||||
|
}
|
||||||
for k, v := range ctx {
|
for k, v := range ctx {
|
||||||
ExprLib[k] = v
|
ExprLib[k] = v
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue