mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-04-04 07:48:48 +02:00
26 lines
394 B
Go
26 lines
394 B
Go
package strings
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
func NewExprs() map[string]any {
|
|
return map[string]any{
|
|
"ReplaceAll": replaceAll,
|
|
"ToUpper": toUpper,
|
|
"ToLower": toLower,
|
|
}
|
|
}
|
|
|
|
func replaceAll(s, old, newV string) string {
|
|
return strings.ReplaceAll(s, old, newV)
|
|
}
|
|
|
|
func toUpper(s string) string {
|
|
return strings.ToUpper(s)
|
|
}
|
|
|
|
func toLower(s string) string {
|
|
return strings.ToLower(s)
|
|
}
|