Rocky_Mountain_Vending/.pnpm-store/v10/files/f4/fd4536698e9008263f37751cc161444d5a39f20b330e0bee8b7ede93bb7367b082b00e82249d6367f19ed7cc0251b8b721b93916806df19a5d52db99feadc6
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

13 lines
333 B
Text

'use strict';
var chunkedBlobReader = require('@smithy/chunked-blob-reader');
const blobHasher = async function blobHasher(hashCtor, blob) {
const hash = new hashCtor();
await chunkedBlobReader.blobReader(blob, (chunk) => {
hash.update(chunk);
});
return hash.digest();
};
exports.blobHasher = blobHasher;