summaryrefslogtreecommitdiffstats
path: root/lib/str.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/str.go')
-rw-r--r--lib/str.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/str.go b/lib/str.go
index 98b16e9..6ba9507 100644
--- a/lib/str.go
+++ b/lib/str.go
@@ -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] == ' ' {