console/deployment/utils/helpers.ts
Kamil Kisiela dc3bc1ec87 Hello
2022-05-18 09:26:57 +02:00

29 lines
723 B
TypeScript

import { DeploymentEnvironment } from '../types';
export function isProduction(
deploymentEnv: DeploymentEnvironment | string
): boolean {
return !isStaging(deploymentEnv);
}
export function isStaging(
deploymentEnv: DeploymentEnvironment | string
): boolean {
return isDeploymentEnvironment(deploymentEnv)
? deploymentEnv.ENVIRONMENT === 'staging'
: deploymentEnv === 'staging';
}
export function isDeploymentEnvironment(
value: any
): value is DeploymentEnvironment {
return (
value &&
typeof value === 'object' &&
typeof value['ENVIRONMENT'] === 'string'
);
}
export function isDefined<T>(value: T | null | undefined): value is T {
return value !== null && value !== undefined;
}