mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
/* 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 };
|