(url: &str)
| 572 | } |
| 573 | |
| 574 | fn is_https_url(url: &str) -> bool { |
| 575 | url.to_ascii_lowercase().starts_with("https://") |
| 576 | } |
| 577 | |
| 578 | fn target_score(target: &HostTarget, signal: &TargetSignal) -> Option<i32> { |
| 579 | let os = signal.os?; |
no outgoing calls
no test coverage detected