summaryrefslogtreecommitdiff
path: root/std/encoding/utf8.ts
blob: 6951e37f0bddf19b9cacd41bda878da3226ee156 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.

/** 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);
}