(value: &str)
| 53 | } |
| 54 | |
| 55 | fn normalize_pairing_code(value: &str) -> String { |
| 56 | value.chars().filter(|ch| ch.is_ascii_digit()).collect() |
| 57 | } |
| 58 | |
| 59 | pub fn access_cookie_value(token: &str) -> String { |
| 60 | format!("{ACCESS_TOKEN_COOKIE}={token}; Path=/; HttpOnly; SameSite=Strict") |
no outgoing calls
no test coverage detected