UNPKG

multiformats

Version:

Interface for multihash, multicodec, multibase and CID

18 lines (14 loc) 296 B
// @ts-check import { rfc4648 } from './base.js' export const base16 = rfc4648({ prefix: 'f', name: 'base16', alphabet: '0123456789abcdef', bitsPerChar: 4 }) export const base16upper = rfc4648({ prefix: 'F', name: 'base16upper', alphabet: '0123456789ABCDEF', bitsPerChar: 4 })