diff options
Diffstat (limited to 'lib/str.go')
-rw-r--r-- | lib/str.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,7 +42,7 @@ func BytesToStr(bs []byte) string { } // Strip space and newline characters from string. -func stripSpaceChars(s string) string { +func StripSpaceChars(s string) string { ss := "" for i := 0; i < len(s); i++ { if s[i] == ' ' { |