9 lines
283 B
TypeScript
9 lines
283 B
TypeScript
import { TextDecoder } from "util";
|
|
|
|
export function arrbufToStr(arrayBuffer : ArrayBuffer) {
|
|
return new TextDecoder().decode(new Uint8Array(arrayBuffer));
|
|
}
|
|
|
|
export function strToArrBuf(input : string) : Uint8Array<ArrayBufferLike> {
|
|
return new TextEncoder().encode(input)
|
|
} |