UNPKG
@ndn/tlv
Version:
latest (0.0.20260427)
0.0.20260427
0.0.20250307
0.0.20250122
0.0.20240630
0.0.20240113
0.0.20230121
0.0.20220501
0.0.20210930
0.0.20210203
0.0.20200909
0.0.20200606
0.0.20191223-beta.1
NDNts: TLV
yoursunny.com/p/NDNts/
yoursunny/NDNts
@ndn/tlv
/
lib
/
string_browser.js
12 lines
(11 loc)
•
313 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** 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"
)}
`
; }