diff options
author | rsiddharth <s@ricketyspace.net> | 2021-01-30 13:56:57 -0500 |
---|---|---|
committer | rsiddharth <s@ricketyspace.net> | 2021-01-30 13:56:57 -0500 |
commit | 7dfa85eb027fc27ff858e73f1a1ff5fd5e51a89a (patch) | |
tree | 3596c34e077e90cc9aefc196b55184ce1696668a | |
parent | 4b68263ea32cab3ecc70575c257de407fa703f07 (diff) |
lib: stripSpaceChars -> StripSpaceChars
-rw-r--r-- | lib/b64.go | 2 | ||||
-rw-r--r-- | lib/str.go | 2 | ||||
-rw-r--r-- | lib/web.go | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -20,7 +20,7 @@ func HexToBase64(hex string) string { } func Base64ToBytes(enc string) []byte { - enc = stripSpaceChars(enc) + enc = StripSpaceChars(enc) l := len(enc) bs := make([]byte, 3*(l/4)) @@ -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] == ' ' { @@ -32,7 +32,7 @@ func WebParseKeyValue(encoded string) map[string]string { kvs := StrSplitAt('&', encoded) for i := 0; i < len(kvs); i++ { kv := StrSplitAt('=', kvs[i]) - m[stripSpaceChars(kv[0])] = kv[1] + m[StripSpaceChars(kv[0])] = kv[1] } return m } |