File tree 1 file changed +13
-3
lines changed
1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -57,9 +57,19 @@ fn do_is_valid_token(bytes: BitArray, acc: Bool) {
57
57
}
58
58
}
59
59
60
- @ external ( erlang , "gleam_http_native" , "is_valid_tchar" )
61
- @ external ( javascript , "../gleam_http_native.mjs" , "is_valid_tchar" )
62
- fn is_valid_tchar ( ch : Int ) -> Bool
60
+ fn is_valid_tchar ( ch : Int ) -> Bool {
61
+ case ch {
62
+ // "!" | "#" | "$" | "%" | "&" | "'" | "*" | "+" | "-"
63
+ // | "." | "^" | "_" | "`" | "|" | "~"
64
+ 33 | 35 | 36 | 37 | 38 | 39 | 42 | 43 | 45 | 46 | 94 | 95 | 96 | 124 | 126 ->
65
+ True
66
+ // DIGIT
67
+ ch if ch >= 0x30 && ch <= 0x39 -> True
68
+ // ALPHA
69
+ ch if ch >= 0x41 && ch <= 0x5A || ch >= 0x61 && ch <= 0x7A -> True
70
+ _ -> False
71
+ }
72
+ }
63
73
64
74
// TODO: check if the a is a valid HTTP method (i.e. it is a token, as per the
65
75
// spec) and return Ok(Other(s)) if so.
You can’t perform that action at this time.
0 commit comments