blob: d0349545e9d2afb677d51fe5a734c99082357ccc (
plain)
1
2
3
4
5
6
7
|
import { foo } from "./timeout_loop.js";
import { collection } from "../circular.js";
console.log("collection in b", collection);
console.log("foo in b", foo);
export const a = "a";
|