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>
11 lines
453 B
Text
11 lines
453 B
Text
/**
|
|
* FNV-1a Hash implementation
|
|
* @author Travis Webb (tjwebb) <me@traviswebb.com>
|
|
*
|
|
* Ported from https://github.com/tjwebb/fnv-plus/blob/master/index.js
|
|
*
|
|
* Simplified, optimized and add modified for 52 bit, which provides a larger hash space
|
|
* and still making use of Javascript's 53-bit integer space.
|
|
*/
|
|
export declare const fnv1a52: (str: string) => number;
|
|
export declare const generateETag: (payload: string, weak?: boolean) => string;
|