summaryrefslogtreecommitdiff
path: root/std/node/tests/cjs/cjs_a.js
blob: b8f69c857537b042f1180bc09e2f3415dce18298 (plain)
1
2
3
4
5
6
7
8
9
10
/* eslint-disable */
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 };