Files
2026-07-13 12:37:41 +08:00

7 lines
200 B
TypeScript

import { EnvKey } from "@/types/key-type"
// returns true if the key is found in the environment variables
export function isUsingEnvironmentKey(type: EnvKey) {
return Boolean(process.env[type])
}