renvar 0.1.0

Library to deserialize environment variables in to Rust datatypes
Documentation
1
2
3
4
5
/// Determines whether the input [`char`]
/// is a single quote ('), double quote (") or whitespace
pub(crate) fn is_quote_or_whitespace(c: char) -> bool {
    c == '"' || c == '\'' || c == ' '
}