summaryrefslogtreecommitdiff
path: root/std/node/tests/cjs/cjs_a.js
blob: b2dae2b6b02a813ccc1f46618b48b9974bc734e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
// deno-lint-ignore-file no-undef
// deno-lint-ignore-file
const { helloB } = require("./cjs_b.js");
const C = require("./subdir/cjs_c");
const leftPad = require("left-pad");

function helloA() {
  return "A";
}

module.exports = { helloA, helloB, C, leftPad };