This commit is contained in:
Zachary Yedidia
2020-01-31 00:56:20 -05:00
4 changed files with 20 additions and 5 deletions

File diff suppressed because one or more lines are too long

View File

@@ -417,3 +417,7 @@ func IsNonAlphaNumeric(c rune) bool {
func ParseSpecial(s string) string {
return strings.Replace(s, "\\t", "\t", -1)
}
func String(s []byte) string {
return string(s)
}