1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/std/node/tests/cjs/cjs_a.js

11 lines
224 B
JavaScript
Raw Normal View History

/* 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 };