Browse Source

beam/data: expose EncodeString for convenience access to the underlying netstring primitive

Docker-DCO-1.1-Signed-off-by: Solomon Hykes <solomon@docker.com> (github: shykes)
Solomon Hykes 11 years ago
parent
commit
a5bc75d406
1 changed files with 2 additions and 0 deletions
  1. 2 0
      pkg/beam/data/data.go

+ 2 - 0
pkg/beam/data/data.go

@@ -23,6 +23,8 @@ func encodeString(s string) string {
 	return fmt.Sprintf("%d:%s,", len(s), s)
 }
 
+var EncodeString = encodeString
+
 func encodeList(l []string) string {
 	values := make([]string, 0, len(l))
 	for _, s := range l {