//#region src/IsDevEnv.ts/**
* Validates whether the current environment is either development or test
*/const isDevEnv = process.env.NODE_ENV === "development" ? true : process.env.NODE_ENV === "test";
//#endregionexport { isDevEnv };
//# sourceMappingURL=IsDevEnv.mjs.map