mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
cf0579c7d4
This commit updates our testing npm registry to handle additional `@denotest2` scope in addition to `@denotest` scope. I might have to update it further in the future to handle additional scopes, but it's good enough for now.
11 lines
160 B
JavaScript
11 lines
160 B
JavaScript
let value = 0;
|
|
|
|
export function setValue(newValue) {
|
|
value = newValue;
|
|
}
|
|
|
|
export function getValue() {
|
|
return value;
|
|
}
|
|
|
|
export const url = import.meta.url;
|