Decode a string from base64, using base64 "URL-safe" encoding. Padding is always optional.
Base64-encoded string
Data decoded from the base64 string
Encode an ArrayBuffer to base64 in a string, using base64 "URL-safe" encoding. The result does not include any padding
Data to encode to base64
Base64-encoded string
Generated using TypeDoc
This module provides utilities to encode and decode base64 using the "URL-safe" encoding, where characters 63 and 64 are
-
and_
respectively. TheEncode
function does not append padding in this case (withDecode
, padding is always optional).