//#region src/utils/runtimeEnvironment.ts const isDevelopmentEnvironment = () => { try { return process.env.NODE_ENV === "development"; } catch {} return false; }; const isTestEnvironment = () => { try { return process.env.NODE_ENV === "test"; } catch {} return false; }; const isProductionEnvironment = () => { try { return process.env.NODE_ENV === "production"; } catch {} return false; }; //#endregion export { isProductionEnvironment as n, isTestEnvironment as r, isDevelopmentEnvironment as t }; //# sourceMappingURL=runtimeEnvironment-D1yr0yUs.mjs.map