Files
anubis-mirror/web/js/algorithms/index.ts
Xe Iaso a0df3d4428 chore: cleanups
Signed-off-by: Xe Iaso <me@xeiaso.net>
2025-09-28 04:03:39 +00:00

10 lines
212 B
TypeScript

import fast from "./fast";
import wasm from "./wasm";
export default {
fast: fast,
slow: fast, // XXX(Xe): slow is deprecated, but keep this around in case anything goes bad
hashx: wasm,
sha256: wasm,
}