mirror of
https://github.com/denoland/deno.git
synced 2024-12-03 17:08:35 -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;
|