To use browser's atob() or btoa(), we need to convert between bytes and so-called "binary" string. This test converts "binary" string to bytes, for working with results from atob() calls, which decodes base64 to bytes (in the form of binary string).
Comparing performance of:Uint8Array.from + codePointAt vs Uint8Array.from + charCodeAt vs for-loop + codePointAt vs for-loop + charCodeAt vs for-loop + Uint8Array.from + codePointAt (small chunk) vs for-loop + Uint8Array.from + charCodeAt (small chunk) vs for-loop + Uint8Array.from + codePointAt (big chunk) vs for-loop + Uint8Array.from + charCodeAt (big chunk)