imag/src/util/mod.rs

10 lines
152 B
Rust
Raw Normal View History

2015-12-28 17:46:36 +00:00
use url::Url;
2015-12-29 16:43:06 +00:00
/**
* Util: Check wether a String can be parsed as an URL
*/
2015-12-28 17:46:36 +00:00
pub fn is_url(url: &String) -> bool {
Url::parse(&url[..]).is_ok()
}