UNPKG

@rws-aoa/utils

Version:
9 lines (8 loc) 277 B
//#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"; //#endregion export { isDevEnv }; //# sourceMappingURL=IsDevEnv.mjs.map