Coverage, docs.

This commit is contained in:
Nuno Cruces
2024-09-22 12:09:23 +01:00
parent 2526fc8444
commit 44c3f9b4e7
6 changed files with 62 additions and 31 deletions

View File

@@ -26,6 +26,8 @@ func Unquote(val string) string {
return val
case '"':
old, new = `""`, `"`
case '`':
old, new = "``", "`"
case '\'':
old, new = `''`, `'`
}