Decode a string from base64, using base64 "standard" encoding. Padding is always optional.
Base64-encoded string
Data decoded from the base64 string
Encode an ArrayBuffer to base64 in a string, using base64 "standard" encoding.
Data to encode to base64
Base64-encoded string
Generated using TypeDoc
This module provides utilities to encode and decode base64 using the "standard" encoding, where characters 63 and 64 are
+
and/
respectively. TheEncode
function appends padding=
characters at the end of the encoded string, if required (withDecode
, padding is always optional).