Skip to content

Commit

Permalink
Added functions with correct names (#461)
Browse files Browse the repository at this point in the history
  • Loading branch information
ziflex authored Mar 11, 2020
1 parent e4464d9 commit 978108e
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pkg/stdlib/strings/lib.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,14 @@ func RegisterLib(ns core.Namespace) error {
"LTRIM": LTrim,
"RANDOM_TOKEN": RandomToken,
"MD5": Md5,
"REGEXP_MATCH": RegexMatch,
"REGEXP_SPLIT": RegexSplit,
"REGEXP_TEST": RegexTest,
"REGEXP_REPLACE": RegexReplace,
"REGEXP_MATCH": RegexMatch, // Deprecated
"REGEXP_SPLIT": RegexSplit, // Deprecated
"REGEXP_TEST": RegexTest, // Deprecated
"REGEXP_REPLACE": RegexReplace, // Deprecated
"REGEX_MATCH": RegexMatch,
"REGEX_SPLIT": RegexSplit,
"REGEX_TEST": RegexTest,
"REGEX_REPLACE": RegexReplace,
"RIGHT": Right,
"RTRIM": RTrim,
"SHA1": Sha1,
Expand Down

0 comments on commit 978108e

Please sign in to comment.