mirror of
https://github.com/denoland/deno.git
synced 2024-11-27 16:10:57 -05:00
8e914be742
This commit migrates repository from using "eslint" to "dlint" for linting JavaScript code.
11 lines
249 B
JavaScript
11 lines
249 B
JavaScript
// deno-lint-ignore-file no-undef
|
|
// deno-lint-ignore-file
|
|
const fs = require("fs");
|
|
const util = require("util");
|
|
const path = require("path");
|
|
|
|
module.exports = {
|
|
readFileSync: fs.readFileSync,
|
|
isNull: util.isNull,
|
|
extname: path.extname,
|
|
};
|