UNPKG

@3id/common

Version:
8 lines (7 loc) 194 B
import { fromString, toString } from 'uint8arrays'; export function fromHex(hex) { return fromString(hex, 'base16'); } export function toHex(bytes) { return toString(bytes, 'base16'); }