Stringify all buckets/keys/values

Resolves Issue #34
This commit is contained in:
2019-10-16 15:13:38 -05:00
parent a3714bf8e4
commit 1f3880f32e
3 changed files with 15 additions and 6 deletions
+7
View File
@@ -30,3 +30,10 @@ func stringify(v []byte) string {
return fmt.Sprintf("%x", v)
}
func stringifyPath(path []string) []string {
for k, v := range path {
path[k] = stringify([]byte(v))
}
return path
}