mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
45 lines
1.1 KiB
TypeScript
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);
|
|
}
|