swc/crates/swc_bundler/tests/.cache/deno/12718a69cb4870a5d8f43e95389215a652e1ff23.ts

15 lines
342 B
TypeScript
Raw Normal View History

// Loaded from https://deno.land/x/deno_image@v0.0.3/lib/decoders/fast-png/iobuffer/utf8.ts
const decoder = new TextDecoder('utf-8');
export function decode(bytes: Uint8Array): string {
return decoder.decode(bytes);
}
const encoder = new TextEncoder();
export function encode(str: string): Uint8Array {
return encoder.encode(str);
}