diff options
Diffstat (limited to 'tests/registry/npm/@denotest/cjs-multiple-exports/1.0.0/src')
-rw-r--r-- | tests/registry/npm/@denotest/cjs-multiple-exports/1.0.0/src/add.js | 3 | ||||
-rw-r--r-- | tests/registry/npm/@denotest/cjs-multiple-exports/1.0.0/src/index.js | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/registry/npm/@denotest/cjs-multiple-exports/1.0.0/src/add.js b/tests/registry/npm/@denotest/cjs-multiple-exports/1.0.0/src/add.js new file mode 100644 index 000000000..42c8a7c60 --- /dev/null +++ b/tests/registry/npm/@denotest/cjs-multiple-exports/1.0.0/src/add.js @@ -0,0 +1,3 @@ +module.exports = function add(a, b) { + return a + b; +};
\ No newline at end of file diff --git a/tests/registry/npm/@denotest/cjs-multiple-exports/1.0.0/src/index.js b/tests/registry/npm/@denotest/cjs-multiple-exports/1.0.0/src/index.js new file mode 100644 index 000000000..432ed652e --- /dev/null +++ b/tests/registry/npm/@denotest/cjs-multiple-exports/1.0.0/src/index.js @@ -0,0 +1,3 @@ +module.exports = { + hello: "world" +};
\ No newline at end of file |