mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
12 lines
160 B
JavaScript
12 lines
160 B
JavaScript
|
let value = 0;
|
||
|
|
||
|
export function setValue(newValue) {
|
||
|
value = newValue;
|
||
|
}
|
||
|
|
||
|
export function getValue() {
|
||
|
return value;
|
||
|
}
|
||
|
|
||
|
export const url = import.meta.url;
|