Rocky_Mountain_Vending/.pnpm-store/v10/files/08/86a3cfdd9acdd2cde25ac36ca188cae0861c8d5f703383750d51d4fc89b4f5210404d776467db2a7ec8782cdfbe873ad9598937a2408b3cb2489a4e4d9efcc
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

5 lines
No EOL
290 B
Text

import { distinctUntilChanged } from './distinctUntilChanged';
export function distinctUntilKeyChanged(key, compare) {
return distinctUntilChanged(function (x, y) { return (compare ? compare(x[key], y[key]) : x[key] === y[key]); });
}
//# sourceMappingURL=distinctUntilKeyChanged.js.map