1 2 3 4 5 6 7 8 9
export const name = "b"; import { name as cName } from "./es6module_cycle_c.js"; export let loaded = true; export function getValueFromC() { return cName; }