From 7a2cfc4872ec27ef4ea5aa79f01dcb03a9a24d88 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 27 Jul 2021 15:17:31 -0400 Subject: remove link 'title' attributes that's just the 'href' (ru, part 4) (#1748) --- files/ru/web/api/windoworworkerglobalscope/btoa/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files/ru/web/api/windoworworkerglobalscope/btoa/index.html') diff --git a/files/ru/web/api/windoworworkerglobalscope/btoa/index.html b/files/ru/web/api/windoworworkerglobalscope/btoa/index.html index faae953fbd..24f0c7ab38 100644 --- a/files/ru/web/api/windoworworkerglobalscope/btoa/index.html +++ b/files/ru/web/api/windoworworkerglobalscope/btoa/index.html @@ -30,7 +30,7 @@ var decodedData = window.atob(encodedData); // decode the string

В большинстве браузеров, вызов window.btoa() на Unicode строке выбросит исключение Character Out Of Range (Символ вне допустимого диапазона).

-

Чтобы избежать этого, воспользуйтесь паттерном, предложенным Johan Sundström:

+

Чтобы избежать этого, воспользуйтесь паттерном, предложенным Johan Sundström:

function utf8_to_b64(str) {
     return window.btoa(unescape(encodeURIComponent(str)));
-- 
cgit v1.2.3-54-g00ecf