Rocky_Mountain_Vending/.pnpm-store/v10/files/a5/e2163b2803eaaa63c6654d0ed2ba846631f4e1995a28394dc13459ef1c24c1fef3a935491f150a969190d7cabc1423f220e071c12afa6f7b539f3399348b9f
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

26 lines
766 B
Text

export { digest } from 'ohash/crypto';
export { i as isEqual } from './shared/ohash.CMR0vuBX.mjs';
/**
* Serializes any input value into a string for hashing.
*
* This method uses best efforts to generate stable serialized values.
* However, it is not designed for security purposes.
* Keep in mind that there is always a chance of intentional collisions caused by user input.
*
* @param input any value to serialize
* @return {string} serialized string value
*/
declare function serialize(input: any): string;
/**
* Hashes any JS value into a string.
*
* The input is first serialized and then hashed.
*
* @param input any value to serialize
* @return {string} hash value
*/
declare function hash(input: any): string;
export { hash, serialize };