summaryrefslogtreecommitdiff
path: root/std/encoding/utf8.ts
blob: 266c61165691c2ed3ad08eac74e71483b72f52aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** A default TextEncoder instance */
export const encoder = new TextEncoder();

/** Shorthand for new TextEncoder().encode() */
export function encode(input?: string): Uint8Array {
  return encoder.encode(input);
}

/** A default TextDecoder instance */
export const decoder = new TextDecoder();

/** Shorthand for new TextDecoder().decode() */
export function decode(input?: Uint8Array): string {
  return decoder.decode(input);
}