mirror of
https://github.com/barkeser2002/mcsleepingserverstarter.git
synced 2026-09-25 17:56:10 +03:00
7 lines
128 B
TypeScript
7 lines
128 B
TypeScript
|
|
export const isInDev = () => {
|
|
if (process.env.NODE_ENV === 'development') {
|
|
return true;
|
|
}
|
|
return false;
|
|
} |