add vendor data
All checks were successful
Create and publish a Docker image 🚀 / build-and-push-image (push) Successful in 1m49s
All checks were successful
Create and publish a Docker image 🚀 / build-and-push-image (push) Successful in 1m49s
This commit is contained in:
16
vendor/github.com/dunglas/httpsfv/utils.go
generated
vendored
Normal file
16
vendor/github.com/dunglas/httpsfv/utils.go
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
package httpsfv
|
||||
|
||||
// isLowerCaseAlpha checks if c is a lower cased alpha character.
|
||||
func isLowerCaseAlpha(c byte) bool {
|
||||
return 'a' <= c && c <= 'z'
|
||||
}
|
||||
|
||||
// isAlpha checks if c is an alpha character.
|
||||
func isAlpha(c byte) bool {
|
||||
return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z')
|
||||
}
|
||||
|
||||
// isDigit checks if c is a digit.
|
||||
func isDigit(c byte) bool {
|
||||
return '0' <= c && c <= '9'
|
||||
}
|
||||
Reference in New Issue
Block a user