summaryrefslogtreecommitdiff
path: root/tests/registry/npm-private3/@denotest3/basic/1.0.0/main.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/registry/npm-private3/@denotest3/basic/1.0.0/main.mjs')
-rw-r--r--tests/registry/npm-private3/@denotest3/basic/1.0.0/main.mjs11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/registry/npm-private3/@denotest3/basic/1.0.0/main.mjs b/tests/registry/npm-private3/@denotest3/basic/1.0.0/main.mjs
new file mode 100644
index 000000000..0a44f7585
--- /dev/null
+++ b/tests/registry/npm-private3/@denotest3/basic/1.0.0/main.mjs
@@ -0,0 +1,11 @@
+let value = 0;
+
+export function setValue(newValue) {
+ value = newValue;
+}
+
+export function getValue() {
+ return value;
+}
+
+export const url = import.meta.url;