mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
Update deps
This commit is contained in:
parent
f033bb3034
commit
5a091c6da4
1997 changed files with 368830 additions and 2045 deletions
48
vendor/github.com/ettle/strcase/unicode.go
generated
vendored
Normal file
48
vendor/github.com/ettle/strcase/unicode.go
generated
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
package strcase
|
||||
|
||||
import "unicode"
|
||||
|
||||
// Unicode functions, optimized for the common case of ascii
|
||||
// No performance lost by wrapping since these functions get inlined by the compiler
|
||||
|
||||
func isUpper(r rune) bool {
|
||||
return unicode.IsUpper(r)
|
||||
}
|
||||
|
||||
func isLower(r rune) bool {
|
||||
return unicode.IsLower(r)
|
||||
}
|
||||
|
||||
func isNumber(r rune) bool {
|
||||
if r >= '0' && r <= '9' {
|
||||
return true
|
||||
}
|
||||
return unicode.IsNumber(r)
|
||||
}
|
||||
|
||||
func isSpace(r rune) bool {
|
||||
if r == ' ' || r == '\t' || r == '\n' || r == '\r' {
|
||||
return true
|
||||
} else if r < 128 {
|
||||
return false
|
||||
}
|
||||
return unicode.IsSpace(r)
|
||||
}
|
||||
|
||||
func toUpper(r rune) rune {
|
||||
if r >= 'a' && r <= 'z' {
|
||||
return r - 32
|
||||
} else if r < 128 {
|
||||
return r
|
||||
}
|
||||
return unicode.ToUpper(r)
|
||||
}
|
||||
|
||||
func toLower(r rune) rune {
|
||||
if r >= 'A' && r <= 'Z' {
|
||||
return r + 32
|
||||
} else if r < 128 {
|
||||
return r
|
||||
}
|
||||
return unicode.ToLower(r)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue