UNPKG

radix64-encoding

Version:

Radix64 encoding, a.k.a. Base64 encoding. An extremely fast and synchronous JS implementation.

8 lines (7 loc) 267 B
declare const ALPHABET_CHARS: string[]; declare const ALPHABET_CODES: number[]; declare const MASK1 = 16515072; declare const MASK2 = 258048; declare const MASK3 = 4032; declare const MASK4 = 63; export { ALPHABET_CHARS, ALPHABET_CODES, MASK1, MASK2, MASK3, MASK4 };