Nope. The workaround is: ```js let variable; export async function onRequestGet(context) { if (

Nope. The workaround is:
let variable;

export async function onRequestGet(context) {
    if (variable == null) {
        variable = initFromEnv(env);
    }
    // ...use variable
}
Was this page helpful?