Skip to content

Commit 0accb31

Browse files
arnu515lpil
authored andcommitted
fix: add back the is_valid_tchar method
1 parent 01123dc commit 0accb31

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

src/gleam/http.gleam

+13-3
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,19 @@ fn do_is_valid_token(bytes: BitArray, acc: Bool) {
5757
}
5858
}
5959

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+
}
6373

6474
// TODO: check if the a is a valid HTTP method (i.e. it is a token, as per the
6575
// spec) and return Ok(Other(s)) if so.

0 commit comments

Comments
 (0)