issue-2: added some more string functions #6

Merged
lmika merged 2 commits from feature/issue-2 into main 2024-10-21 10:01:49 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 504106b5ef - Show all commits

View File

@ -41,5 +41,5 @@ func trim(ctx context.Context, args ucl.CallArgs) (any, error) {
return nil, err return nil, err
} }
return strings.ToLower(s), nil return strings.TrimSpace(s), nil
} }