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>
16 lines
No EOL
440 B
Text
16 lines
No EOL
440 B
Text
"use strict";
|
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
|
|
exports.__esModule = true;
|
|
exports.default = isWindow;
|
|
|
|
var _isDocument = _interopRequireDefault(require("./isDocument"));
|
|
|
|
function isWindow(node) {
|
|
if ('window' in node && node.window === node) return node;
|
|
if ((0, _isDocument.default)(node)) return node.defaultView || false;
|
|
return false;
|
|
}
|
|
|
|
module.exports = exports["default"]; |