9 lines
162 B
JavaScript
9 lines
162 B
JavaScript
export const name = "c";
|
|
|
|
import { name as aName } from "./es6module_cycle_a.js";
|
|
|
|
export let loaded = true;
|
|
|
|
export function getValueFromA() {
|
|
return aName;
|
|
}
|