mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
8e914be742
This commit migrates repository from using "eslint" to "dlint" for linting JavaScript code.
11 lines
262 B
JavaScript
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 };
|