Skip to content

Commit 27c9db2

Browse files
committed
Implement toLower fn util
1 parent d59c877 commit 27c9db2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

utils/strings.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package utils
2+
3+
import "strings"
4+
5+
func ToLower(s string) string {
6+
return strings.ToLower(s)
7+
}

0 commit comments

Comments
 (0)