DE
Size: a a a
DE
НК
DE
DE
DK
p
p
R
DE
DK
DK
p
DK
p
DK
DK
НС
const base64toUtf8 = (
base64,
bin = atob(base64)
) =>
new TextDecoder("utf-8").decode(
new Uint8Array(bin.length).map((v, i) => bin.charCodeAt(i))
)
new TextDecoder('utf-8').decode(Uint8Array.from(atob(string), (c) => c.charCodeAt(0)))
, но в несколько раз быстрее.НС
DE
new TextDecoder('utf-8').decode(Uint8Array.from(atob(string), (c) => c.charCodeAt(0)))
, но в несколько раз быстрее.D