swc/bundler/tests/.cache/untrusted/6355d98e3d1021b59a8c68e37a7d16828d54ea6f.ts
강동윤 bbaf619f63
fix(bundler): Fix bugs (#1437)
swc_bundler:
 - [x] Fix wrapped esms. (denoland/deno#9307)
 - [x] Make test secure.
2021-03-02 17:33:03 +09:00

39 lines
1.0 KiB
TypeScript

// Loaded from https://raw.githubusercontent.com/aricart/tweetnacl-deno/import-type-fixes/src/server/convert.ts
import type { ByteArray } from '../array.ts';
import { validateBase64, validateHex } from '../validate.ts';
import * as base64 from "https://denopkg.com/chiefbiiko/base64/mod.ts";
import { encodeToString, decodeString } from "https://deno.land/std@0.52.0/encoding/hex.ts";
//const { prototype: { slice } } = Array;
const encoder = new TextEncoder();
const decoder = new TextDecoder();
export function encodeUTF8(a: ByteArray): string {
return decoder.decode(a);
}
export function decodeUTF8(s: string): ByteArray {
return encoder.encode(s);
}
export function encodeBase64(a: ByteArray): string {
return base64.fromUint8Array(a);
}
export function decodeBase64(s: string): ByteArray {
validateBase64(s);
return base64.toUint8Array(s);
}
export function encodeHex(a: ByteArray): string {
return encodeToString(a);
}
export function decodeHex(s: string): ByteArray {
validateHex(s);
return decodeString(s);
}