mirror of
https://github.com/tauri-apps/deno.git
synced 2026-02-04 18:51:20 +01:00
8 lines
216 B
TypeScript
8 lines
216 B
TypeScript
/** A default TextDecoder instance */
|
|
export const decoder = new TextDecoder();
|
|
|
|
/** Shorthand for new TextDecoder().decode() */
|
|
export function decode(input?: Uint8Array): string {
|
|
return decoder.decode(input);
|
|
}
|