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.
21 lines
463 B
TypeScript
21 lines
463 B
TypeScript
// Loaded from https://deno.land/x/base64/base64url.ts
|
|
|
|
|
|
import { init } from "./base.ts";
|
|
|
|
const lookup: string[] = [];
|
|
const revLookup: number[] = [];
|
|
const code: string =
|
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_";
|
|
|
|
for (let i: number = 0, l = code.length; i < l; ++i) {
|
|
lookup[i] = code[i];
|
|
revLookup[code.charCodeAt(i)] = i;
|
|
}
|
|
|
|
export const { byteLength, toUint8Array, fromUint8Array } = init(
|
|
lookup,
|
|
revLookup,
|
|
true,
|
|
);
|