(name: &str)
| 250 | |
| 251 | #[inline] |
| 252 | fn get_ext(name: &str) -> &str { |
| 253 | if let Some(i) = name.rfind('.') { |
| 254 | return &name[i + 1..]; |
| 255 | } |
| 256 | "" |
| 257 | } |
| 258 | |
| 259 | #[inline] |
| 260 | fn is_compressed_file(name: &str) -> bool { |
no outgoing calls
no test coverage detected