initial commits

master
Charles Iliya Krempeaux 2023-12-07 20:32:30 -08:00
parent 7d541cb34a
commit 407767aa92
4 changed files with 2130 additions and 0 deletions

10
unreserved/byte.go 100644
View File

@ -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

10
unreserved/rune.go 100644
View File

@ -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