fix: export bufToHex

This commit is contained in:
Derrick Hammer 2023-07-01 23:09:23 -04:00
parent 903823702c
commit 0fead1c786
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 9 additions and 1 deletions

View File

@ -120,4 +120,12 @@ function hexToBuf(hex: string): [Uint8Array, Err] {
return [u8, null];
}
export { b64ToBuf, bufToB64, bufToStr, decodeU64, encodeU64, hexToBuf };
export {
b64ToBuf,
bufToB64,
bufToStr,
decodeU64,
encodeU64,
bufToHex,
hexToBuf,
};