1 2 3 4 5 6 7 8
pub(super) fn unquote(s: &str) -> String { let trimmed = s.trim(); if trimmed.starts_with('\'') && trimmed.ends_with('\'') { trimmed[1..trimmed.len() - 1].to_string() } else { trimmed.to_string() } }