{"version":3,"file":"index.cjs","names":[],"sources":["../src/bases.ts"],"sourcesContent":["// Note that characters must be unique and in ascending order of their character codes.\n\n/** Decimal */\nexport const BASE10 = \"0123456789\";\n\n/** Lowercase hex */\nexport const BASE16L = \"0123456789abcdef\";\n\n/** Uppercase hex */\nexport const BASE16U = \"0123456789ABCDEF\";\n\n/** Lowercase alphabets */\nexport const BASE26L = \"abcdefghijklmnopqrstuvwxyz\";\n\n/** Uppercase alphabets */\nexport const BASE26U = \"ABCDEFGHIJKLMNOPQRSTUVWXYZ\";\n\n/** Lowercase alphanumeric characters */\nexport const BASE36L = \"0123456789abcdefghijklmnopqrstuvwxyz\";\n\n/** Uppercase alphanumeric characters */\nexport const BASE36U = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ\";\n\n/** Alphabets */\nexport const BASE52 = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\n\n/** Alphanumeric characters */\nexport const BASE62 =\n  \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\n\n/** Characters used in Base64 URL */\nexport const BASE64URL =\n  \"-0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz\";\n\n/** HTML safe chars */\nexport const BASE88 =\n  \"!#$%()*+,-./0123456789:;=?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_`abcdefghijklmnopqrstuvwxyz{|}~\";\n\n/** All ASCII (excluding control chars and newlines) */\nexport const BASE95 =\n  \" !\\\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\";\n"],"mappings":""}