13 lines
235 B
TypeScript
13 lines
235 B
TypeScript
import { doSomething } from './b.tsx';
|
|
|
|
export function doSomethingElse() {
|
|
|
|
if(Deno.env.get("a") && Deno.env.get("b")){return;}
|
|
|
|
Deno.env.set("a", "called");
|
|
console.log("a action");
|
|
|
|
doSomething();
|
|
}
|
|
|
|
import.meta.main |