/
seafteam
/
seaf-archtool-core
Обзор
Документация
Войти
/
seafteam
/
seaf-archtool-core
Код
Запросы
11
Задачи
Пакеты
2
Релизы
21
Аналитика
java-back
src/frontend/helpers/strings.js
46 строк
1 KB
markin
Запрос на слияние 'bugfix/ERA-1305-jsonata-from-ide-to-devtool' (
#259
) из bugfix/ERA-1305-jsonata-from-ide-to-devtool в dev
04 авг 2025, 13:48
04 авг 2025, 13:48
6bf4eb3
Код
Авторство
О чём код?
/* Copyright (C) 2023 Sber Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Maintainers: Vladislav Markin <markinvy@yandex.ru>, Sber Contributors: Vladislav Markin <markinvy@yandex.ru>, Sber - 2023 Vladislav Markin <markinvy@yandex.ru>, Sber - 2025 */ export function Base64ToUTF8(base64) { return decodeURIComponent(atob(base64).split('').map(function(c) { return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2); }).join('')); } export function Base64URLToUTF8(base64url) { let base64 = base64url .replaceAll('-', '+') .replaceAll('_', '/'); switch (base64.length % 4) { case 0: break; case 2: base64 += '=='; break; case 3: base64 += '='; break; default: throw new Error(`Illegal base64 safe url string: ${base64url}`); } return decodeURIComponent(atob(base64).split('').map(function(c) { return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2); }).join('')); }