blob: 2e161d7af616bb7047368e8e169eb3c482a6eec6 (
plain)
1
2
3
4
5
6
7
|
/** A default TextDecoder instance */
export const decoder = new TextDecoder();
/** Shorthand for new TextDecoder().decode() */
export function decode(input?: Uint8Array): string {
return decoder.decode(input);
}
|