swc/crates/swc_bundler/tests/.cache/deno/8499ed96852f55f691866315153653b4a3f3e326.ts
2021-11-09 20:42:49 +09:00

21 lines
572 B
TypeScript

// Loaded from https://deno.land/std@0.85.0/encoding/utf8.ts
// 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);
}