1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/std/node/tests/cjs/cjs_a.js
Bartek Iwańczuk 8e914be742
build: migrate to dlint (#8176)
This commit migrates repository from using "eslint" 
to "dlint" for linting JavaScript code.
2020-11-03 16:19:29 +01:00

11 lines
262 B
JavaScript

// deno-lint-ignore-file no-undef
// deno-lint-ignore-file
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 };