"use strict";
//#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";
//#endregionexports.isDevEnv = isDevEnv;
//# sourceMappingURL=IsDevEnv.cjs.map