@rotko/blake3-auto
v1.0.1
Published
High-performance Blake3 hash - auto-selects WASM+Rayon or pure JS
Readme
@rotko/blake3-auto
Auto-selects fastest Blake3 backend (WASM+Rayon > WASM > JS).
Demo: https://blake3.rotko.net
import { init, blake3, getBackend } from '@rotko/blake3-auto';
await init();
blake3(data);
getBackend(); // 'wasm-rayon', 'wasm', or 'js'MIT
