Rocky_Mountain_Vending/.pnpm-store/v10/files/ee/856ea2a8292eb5ab667bc594a7d746a96fc043f793093a3823b4a715a3ec93548523cfc23b1beebd2d67b37998fb39eafe7d099f53f7e43030c971a84eafd8
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

27 lines
No EOL
550 B
Text

"use strict";
function isEqualLocals(a, b, isNamedExport) {
if (!a && b || a && !b) {
return false;
}
let p;
for(p in a){
if (isNamedExport && p === 'default') {
continue;
}
if (a[p] !== b[p]) {
return false;
}
}
for(p in b){
if (isNamedExport && p === 'default') {
continue;
}
if (!a[p]) {
return false;
}
}
return true;
}
module.exports = isEqualLocals;
//# sourceMappingURL=isEqualLocals.js.map