package stringx
import (
"fmt"
"testing"
)
func TestIsFirstUpper(t *testing.T) {
fmt.Println(IsFirstUpper("abc"))
fmt.Println(IsFirstUpper("Abc"))
}