@whook/whook
Version:
Build strong and efficient REST web services.
15 lines (12 loc) • 393 B
text/typescript
import { type WhookMain } from '../types/base.js';
export type WhookEnvironmentsConfig = 'all' | WhookMain['AppEnv'][] | undefined;
export function checkEnvironment(
environments: WhookEnvironmentsConfig,
currentEnvironment: WhookMain['AppEnv'],
) {
return (
typeof environments === 'undefined' ||
'all' === environments ||
environments.includes(currentEnvironment)
);
}