5 lines
131 B
TypeScript
5 lines
131 B
TypeScript
import { bytesToBase64 } from "byte-base64";
|
|
|
|
export function serialize(data: Uint8Array): string {
|
|
return bytesToBase64(data);
|
|
}
|