summaryrefslogtreecommitdiff
path: root/tests/registry/npm-private3/@denotest3/basic/1.0.0/main.mjs
blob: 0a44f75859e9b0f4eb1e599df7196f73af9c2590 (plain)
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;