diff options
Diffstat (limited to 'std/node/tests/cjs/cjs_b.js')
-rw-r--r-- | std/node/tests/cjs/cjs_b.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/std/node/tests/cjs/cjs_b.js b/std/node/tests/cjs/cjs_b.js new file mode 100644 index 000000000..17499012c --- /dev/null +++ b/std/node/tests/cjs/cjs_b.js @@ -0,0 +1,5 @@ +function helloB() { + return "B"; +} + +module.exports = { helloB }; |