UNPKG

@qelos/assets

Version:

manage assets like images and static files on remote servers

9 lines (8 loc) 266 B
import { blobReader } from "@smithy/chunked-blob-reader"; export const blobHasher = async function blobHasher(hashCtor, blob) { const hash = new hashCtor(); await blobReader(blob, (chunk) => { hash.update(chunk); }); return hash.digest(); };