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>
20 lines
No EOL
493 B
Text
20 lines
No EOL
493 B
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.shallowEqual = shallowEqual;
|
|
function shallowEqual(a, b) {
|
|
/* eslint-disable no-restricted-syntax */
|
|
for (var key in a) {
|
|
if ({}.hasOwnProperty.call(a, key) && (!{}.hasOwnProperty.call(b, key) || a[key] !== b[key])) {
|
|
return false;
|
|
}
|
|
}
|
|
for (var _key in b) {
|
|
if ({}.hasOwnProperty.call(b, _key) && !{}.hasOwnProperty.call(a, _key)) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
} |