Rocky_Mountain_Vending/.pnpm-store/v10/files/61/c2cc4ffcda174cece43c77548d2d32435a887f21e60deff7b13169906a2fa8eb8e61f5e186400516d8796dab4836396d1dc821235e511f5c172a6e433cae92
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

6 lines
161 B
Text

'use strict';
/** @type {import('./isObject')} */
module.exports = function isObject(x) {
return !!x && (typeof x === 'function' || typeof x === 'object');
};