summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/npm/registry/@denotest/esm-basic/1.0.0/main.mjs
blob: 23df4221cbeb23317097728667c014f24351a33e (plain)
1
2
3
4
5
6
7
8
9
let value = 0;

export function setValue(newValue) {
  value = newValue;
}

export function getValue() {
  return value;
}