From e73a82dc42b3d80bea42482e227c31e5ef01e273 Mon Sep 17 00:00:00 2001 From: "Kevin (Kun) \"Kassimo\" Qian" Date: Mon, 18 Nov 2019 22:54:20 -0800 Subject: feat(std/node) add CommonJS require (#3380) --- std/node/tests/cjs/cjs_b.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 std/node/tests/cjs/cjs_b.js (limited to 'std/node/tests/cjs/cjs_b.js') 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 }; -- cgit v1.2.3