forked from olcxjas-softworks/LarpixClient
8 lines
281 B
JavaScript
8 lines
281 B
JavaScript
import { toUint8Array } from "../bytes/index.js";
|
|
export function encode(text) {
|
|
return new TextEncoder().encode(text);
|
|
}
|
|
export function decode(data) {
|
|
return new TextDecoder("utf-8", { fatal: false }).decode(toUint8Array(data));
|
|
}
|
|
export const utf8 = { encode, decode };
|