swift-extras-base64
swift-extras-base64 copied to clipboard
API is inconsistent
Encoding:
Base64.encodeBytes(bytes: ...) (redundant "Bytes")
Decoding:
Base64.decode(bytes: ...)
IMO they should both follow the "typical Swift" way, e.g.
Base64.encode(bytes: ...) or even more simply
Base64.encode(...)