Rocky_Mountain_Vending/.pnpm-store/v10/files/4c/531f44d307337bdbaf2b378cda6cc4c6825aa3176d60d619a7e292d03ef100ee83882d56ceb62013594a8b1642619f04a7b62d86f48c6c72312db6671c8aae
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

29 lines
No EOL
771 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const encoding_1 = require("./encoding");
/**
* Hash returned from functions in the browser.
*/
class Hash extends Uint8Array {
/**
* A constant-time comparison against the other hash/array.
*/
equals(other) {
if (!(other instanceof Uint8Array)) {
return false;
}
if (other.length !== this.length) {
return false;
}
let cmp = 0;
for (let i = 0; i < this.length; i++) {
cmp |= this[i] ^ other[i];
}
return cmp === 0;
}
toString(encoding = 'hex') {
return encoding_1.mustGetEncoder(encoding)(this);
}
}
exports.Hash = Hash;
//# sourceMappingURL=hash.js.map