summaryrefslogtreecommitdiff
path: root/std/node/tests/cjs/cjs_a.js
blob: 6295f3a14e36ee1e4729749c851dcc8eb8415435 (plain)
1
2
3
4
5
6
7
8
9
10
11
// deno-lint-ignore-file no-undef
/* 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 };