(decoded []byte)
| 27 | } |
| 28 | |
| 29 | func EncodeBase64(decoded []byte) string { |
| 30 | // Encode the []byte string to encoded string |
| 31 | return base64.StdEncoding.EncodeToString(decoded) |
| 32 | } |
| 33 | |
| 34 | // Functions related to fuzzy matching |
| 35 |
no outgoing calls
no test coverage detected