fix: export bufToHex
This commit is contained in:
parent
903823702c
commit
0fead1c786
|
@ -120,4 +120,12 @@ function hexToBuf(hex: string): [Uint8Array, Err] {
|
||||||
return [u8, null];
|
return [u8, null];
|
||||||
}
|
}
|
||||||
|
|
||||||
export { b64ToBuf, bufToB64, bufToStr, decodeU64, encodeU64, hexToBuf };
|
export {
|
||||||
|
b64ToBuf,
|
||||||
|
bufToB64,
|
||||||
|
bufToStr,
|
||||||
|
decodeU64,
|
||||||
|
encodeU64,
|
||||||
|
bufToHex,
|
||||||
|
hexToBuf,
|
||||||
|
};
|
||||||
|
|
Loading…
Reference in New Issue