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>
21 lines
680 B
Text
21 lines
680 B
Text
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
const node = require('./node.js');
|
|
const worldwide = require('./worldwide.js');
|
|
|
|
/**
|
|
* Returns true if we are in the browser.
|
|
*/
|
|
function isBrowser() {
|
|
// eslint-disable-next-line no-restricted-globals
|
|
return typeof window !== 'undefined' && (!node.isNodeEnv() || isElectronNodeRenderer());
|
|
}
|
|
|
|
// Electron renderers with nodeIntegration enabled are detected as Node.js so we specifically test for them
|
|
function isElectronNodeRenderer() {
|
|
const process = (worldwide.GLOBAL_OBJ ).process;
|
|
return process?.type === 'renderer';
|
|
}
|
|
|
|
exports.isBrowser = isBrowser;
|
|
//# sourceMappingURL=isBrowser.js.map
|