Skip to main content
Module

std/node/_module/cjs/cjs_a.js

Deno standard library
Go to Latest
File
// deno-lint-ignore-file no-undef// deno-lint-ignore-fileconst { 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 };