Rocky_Mountain_Vending/.pnpm-store/v10/files/26/df1d7b8a29e034320ab8fa01626aba6a603d5da166c64affd0913e24e2a95c3d5460b002ccad2ab1900ccc99452ea452a79e344a14c426cfddf0122d84e267
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

31 lines
No EOL
1.7 KiB
Text

/**
* This file provides some helpers that should be used in conjunction with
* explicit environment checks. When combined with the environment checks, it
* will ensure that the correct typings are used as well as enable code
* elimination.
*/ /**
* Type guard to determine if a request is a WebNextRequest. This does not
* actually check the type of the request, but rather the runtime environment.
* It's expected that when the runtime environment is the edge runtime, that any
* base request is a WebNextRequest.
*/ export const isWebNextRequest = (req)=>process.env.NEXT_RUNTIME === 'edge';
/**
* Type guard to determine if a response is a WebNextResponse. This does not
* actually check the type of the response, but rather the runtime environment.
* It's expected that when the runtime environment is the edge runtime, that any
* base response is a WebNextResponse.
*/ export const isWebNextResponse = (res)=>process.env.NEXT_RUNTIME === 'edge';
/**
* Type guard to determine if a request is a NodeNextRequest. This does not
* actually check the type of the request, but rather the runtime environment.
* It's expected that when the runtime environment is the node runtime, that any
* base request is a NodeNextRequest.
*/ export const isNodeNextRequest = (req)=>process.env.NEXT_RUNTIME !== 'edge';
/**
* Type guard to determine if a response is a NodeNextResponse. This does not
* actually check the type of the response, but rather the runtime environment.
* It's expected that when the runtime environment is the node runtime, that any
* base response is a NodeNextResponse.
*/ export const isNodeNextResponse = (res)=>process.env.NEXT_RUNTIME !== 'edge';
//# sourceMappingURL=helpers.js.map