summaryrefslogtreecommitdiff
path: root/utils/env.ts
blob: c0cf447b87c23ccfebd70c99f9b6bd3c05d3dff1 (plain)
1
2
3
4
5
export const getRequiredEnv = (name: string): string => {
  const value = Deno.env.get(name);
  if (!value) throw new Error(`${name} environment variable is required`);
  return value;
};