fluidattacks-blends-domain 0.4.0

Blends functional core: pure AST graph to syntax graph (no_std)
Documentation
1
2
3
4
5
6
7
8
9
10
use alloc::borrow::ToOwned;
use alloc::string::String;

#[must_use]
pub fn strip_quotes(raw: &str) -> String {
    let mut chars = raw.chars();
    chars.next();
    chars.next_back();
    chars.as_str().to_owned()
}