1
0

Don't break =

This commit is contained in:
Kendell R
2024-03-07 15:52:39 -08:00
committed by Toby Schneider
parent e49bada1a5
commit 38b8c3e2d3

View File

@@ -23,7 +23,7 @@ export function base64StringToArrayBuffer(b64str: string): ArrayBuffer {
} }
export function textToArrayBuffer(str: string): ArrayBuffer { export function textToArrayBuffer(str: string): ArrayBuffer {
return byteStringToBytes(decodeURI(encodeURIComponent(str))) return byteStringToBytes(str)
} }
export function arrayBufferToText(arrayBuffer: ArrayBuffer): string { export function arrayBufferToText(arrayBuffer: ArrayBuffer): string {