add new helpers

This commit is contained in:
AlteredCoder 2020-05-22 13:55:48 +02:00
parent 2611f7fa23
commit 62daa98bf3

View file

@ -2,6 +2,7 @@ package exprhelpers
import (
"strconv"
"strings"
log "github.com/sirupsen/logrus"
)
@ -15,6 +16,14 @@ func Atof(x string) float64 {
return ret
}
func StartsWith(s string, pref string) bool {
return strings.HasPrefix(s, pref)
}
func EndsWith(s string, suff string) bool {
return strings.HasSuffix(s, suff)
}
func GetExprEnv(ctx map[string]interface{}) map[string]interface{} {
var ExprLib = map[string]interface{}{"Atof": Atof}