mirror of
https://github.com/denoland/deno.git
synced 2025-01-08 07:08:27 -05:00
10 lines
123 B
JavaScript
10 lines
123 B
JavaScript
|
let value = 0;
|
||
|
|
||
|
export function setValue(newValue) {
|
||
|
value = newValue;
|
||
|
}
|
||
|
|
||
|
export function getValue() {
|
||
|
return value;
|
||
|
}
|