Rocky_Mountain_Vending/.pnpm-store/v10/files/73/8492ea589f5e3b4e5ac37fd93306acf4103cc0b742ab7c31e56f8d1ced835802269467011f1521c88a84321d1a6490295f627e87eff1fecd7618652b0fc285
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

36 lines
No EOL
1 KiB
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
0 && (module.exports = {
isNodeNextRequest: null,
isNodeNextResponse: null,
isWebNextRequest: null,
isWebNextResponse: null
});
function _export(target, all) {
for(var name in all)Object.defineProperty(target, name, {
enumerable: true,
get: all[name]
});
}
_export(exports, {
isNodeNextRequest: function() {
return isNodeNextRequest;
},
isNodeNextResponse: function() {
return isNodeNextResponse;
},
isWebNextRequest: function() {
return isWebNextRequest;
},
isWebNextResponse: function() {
return isWebNextResponse;
}
});
const isWebNextRequest = (req)=>process.env.NEXT_RUNTIME === 'edge';
const isWebNextResponse = (res)=>process.env.NEXT_RUNTIME === 'edge';
const isNodeNextRequest = (req)=>process.env.NEXT_RUNTIME !== 'edge';
const isNodeNextResponse = (res)=>process.env.NEXT_RUNTIME !== 'edge';
//# sourceMappingURL=helpers.js.map