mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
27 lines
686 B
TypeScript
Executable File
27 lines
686 B
TypeScript
Executable File
/**
|
|
* 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
|
|
*/
|
|
export 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
|
|
*/
|
|
export function encode(data: string): string {
|
|
return Utf8.parse(data).toString(Base64);
|
|
}
|