initial commit
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
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();
|
||||
};
|
||||
Reference in New Issue
Block a user