UNPKG

@ndn/tlv

Version:
12 lines (11 loc) 313 B
/** Pretty-print TLV-TYPE number. */ export function printTT(tlvType) { const s = tlvType.toString(16).toUpperCase(); if (tlvType < 0xFD) { return `0x${s.padStart(2, "0")}`; } if (tlvType <= 0xFFFF) { return `0x${s.padStart(4, "0")}`; } return `0x${s.padStart(8, "0")}`; }