initial commits
parent
7d541cb34a
commit
407767aa92
|
@ -0,0 +1,10 @@
|
|||
package unreserved
|
||||
|
||||
import (
|
||||
"sourcecode.social/reiver/go-rfc2396/alphanum"
|
||||
"sourcecode.social/reiver/go-rfc2396/mark"
|
||||
)
|
||||
|
||||
func ByteIs(value byte) bool {
|
||||
return alphanum.ByteIs(value) || mark.ByteIs(value)
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,10 @@
|
|||
package unreserved
|
||||
|
||||
import (
|
||||
"sourcecode.social/reiver/go-rfc2396/alphanum"
|
||||
"sourcecode.social/reiver/go-rfc2396/mark"
|
||||
)
|
||||
|
||||
func RuneIs(value rune) bool {
|
||||
return alphanum.RuneIs(value) || mark.RuneIs(value)
|
||||
}
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue