rtrend 0.1.7

Unofficial API for interacting with Google Trend
Documentation
1
2
3
4
5
6
7
pub fn sanitize_response(body: &str, pos: usize) -> &str {
    let mut chars = body.chars();
    for _ in 0..pos {
        chars.next();
    }
    chars.as_str()
}