mirror of
https://github.com/logos-messaging/logos-messaging-js.git
synced 2026-01-17 07:23:09 +00:00
9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
export function isTestEnvironment(): boolean {
|
|
try {
|
|
return process?.env?.NODE_ENV === "test";
|
|
} catch (_e) {
|
|
// process variable is not defined in PROD environment
|
|
return false;
|
|
}
|
|
}
|