PaymentCenter/app/utils/useragent_test.go

9 lines
217 B
Go

package utils
import "testing"
func TestIsPC(t *testing.T) {
userAgent := "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
t.Log(IsPC(userAgent))
}