refactor: re-export several crypto, string, and binary utilities

This commit is contained in:
Derrick Hammer 2023-07-01 05:08:56 -04:00
parent 2bbc08ede5
commit 94287ce2d9
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 18 additions and 1 deletions

View File

@ -1,2 +1,19 @@
export { DataFn, Err, addContextToErr, objAsString } from "@lumeweb/libweb";
export {
DataFn,
Err,
ErrTuple,
addContextToErr,
objAsString,
hexToBuf,
b64ToBuf,
bufToB64,
bufToStr,
decodeU64,
encodeU64,
ed25519,
sha512,
ensureBytes,
equalBytes,
utf8ToBytes,
} from "@lumeweb/libweb";
export { callModule, connectModule, log, logErr } from "./api.js";