1 2 3 4 5 6 7 8 9 10 11
let value = 0; export function setValue(newValue) { value = newValue; } export function getValue() { return value; } export const url = import.meta.url;