multiformats
Version:
Interface for multihash, multicodec, multibase and CID
14 lines • 381 B
JavaScript
import { baseX } from "./base.js";
export const base36 = baseX({
prefix: 'k',
name: 'base36',
alphabet: '0123456789abcdefghijklmnopqrstuvwxyz',
caseInsensitive: true
});
export const base36upper = baseX({
prefix: 'K',
name: 'base36upper',
alphabet: '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ',
caseInsensitive: true
});
//# sourceMappingURL=base36.js.map