Bblueskychore: init
b3bb84af创建于 2023年11月3日历史提交
export function fromUTF8Array(data: BufferSource): string {
  const decoder = new TextDecoder();
  return decoder.decode(data);
}

export function toUTF8Array(str: string) : Uint8Array {
  const encoder = new TextEncoder();
  return encoder.encode(str);
}