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>
26 lines
No EOL
536 B
Text
26 lines
No EOL
536 B
Text
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 |