Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | /** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ // Encode/decode utf-8 base64 string import * as Base64 from "crypto-js/enc-base64"; import * as Utf8 from "crypto-js/enc-utf8"; /** * Computes utf-8 from base64 * @param data A Base64 encoded string * @returns The original utf-8 string */ function decode(data: string): string { return Base64.parse(data).toString(Utf8); } /** * Computes base64 from utf-8 * @param data A normal string * @returns A base64 encoded version */ function encode(data: string): string { return Utf8.parse(data).toString(Base64); } export const base64 = { encode, decode, }; |