console/deployment/utils/helpers.ts

30 lines
723 B
TypeScript
Raw Normal View History

2022-05-18 07:26:57 +00:00
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;
}