mirror of
https://github.com/d0zingcat/BroadcastChannel.git
synced 2026-05-13 23:16:46 +00:00
4 lines
102 B
JavaScript
4 lines
102 B
JavaScript
export function getEnv(env, Astro, name) {
|
|
return env[name] ?? Astro.locals?.runtime?.env?.[name]
|
|
}
|