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

45 lines
1.1 KiB
TypeScript

// Loaded from https://deno.land/std@0.74.0/encoding/base64.ts
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
/**
* Converts given data with base64 encoding
* @param data input to encode
*/
export function encode(data: string | ArrayBuffer): string {
if (typeof data === "string") {
return btoa(data);
} else {
const d = new Uint8Array(data);
let dataString = "";
for (let i = 0; i < d.length; ++i) {
dataString += String.fromCharCode(d[i]);
}
return btoa(dataString);
}
}
/**
* Converts given base64 encoded data back to original
* @param data input to decode
*/
export function decode(data: string): ArrayBuffer {
const binaryString = decodeString(data);
const binary = new Uint8Array(binaryString.length);
for (let i = 0; i < binary.length; ++i) {
binary[i] = binaryString.charCodeAt(i);
}
return binary.buffer;
}
/**
* Decodes data assuming the output is in string type
* @param data input to decode
*/
export function decodeString(data: string): string {
return atob(data);
}