1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-04 12:52:28 +08:00

LowerFirst: use slicing and utf8 func tools (#5)

Replace looping with slicing and utf8 func tools operations.
This commit is contained in:
donutloop
2021-12-28 12:25:44 +01:00
committed by GitHub
parent a952cb208a
commit ab012f2545
2 changed files with 6 additions and 14 deletions

View File

@@ -70,6 +70,7 @@ func TestLowerFirst(t *testing.T) {
lowerFirst(t, "foo", "foo")
lowerFirst(t, "BAR", "bAR")
lowerFirst(t, "FOo", "fOo")
lowerFirst(t, "FOo大", "fOo大")
}
func lowerFirst(t *testing.T, test string, expected string) {