From 84cabad5fcf2224197526301ff82c08018eae7f5 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Sat, 5 Sep 2020 18:51:19 -0400 Subject: lib: move around stripSpaceChars * lib/b64.go (stripSpaceChars): Move to... * lib/str.go (stripSpaceChars): ...here. --- lib/b64.go | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'lib/b64.go') diff --git a/lib/b64.go b/lib/b64.go index f566b14..f8a8de8 100644 --- a/lib/b64.go +++ b/lib/b64.go @@ -64,18 +64,3 @@ func index(c byte) uint32 { } return uint32(0) } - -// Strip space and newline characters from string. -func stripSpaceChars(s string) string { - ss := "" - for i := 0; i < len(s); i++ { - if s[i] == ' ' { - continue - } - if s[i] == '\n' { - continue - } - ss += string(s[i]) - } - return ss -} -- cgit v1.2.3