This commit is contained in:
Chris Cochrun 2024-12-05 22:39:20 -06:00
parent f0dfa0c238
commit 4e7e050bf6
3 changed files with 3 additions and 6 deletions

View file

@ -122,10 +122,7 @@ impl From<&Value> for String {
fn from(value: &Value) -> Self {
match value {
Value::String(str) => str.clone(),
Value::Symbol(Symbol(str)) => {
dbg!(str);
str.clone()
}
Value::Symbol(Symbol(str)) => str.clone(),
Value::Keyword(Keyword(str)) => str.clone(),
_ => String::default(),
}