mirror of
https://github.com/denoland/deno.git
synced 2024-12-13 02:52:54 -05:00
b216d48e5f
upgrades: - swc_ecmascript 0.7.7 - dprint-plugin-typescript 0.31.3 - deno_lint 0.2.0 - deno_doc 0.1.9 Split std_lint test into std_lint and unit_test_lint. Added lint ignores to CommonJS files in std/node.
11 lines
245 B
JavaScript
11 lines
245 B
JavaScript
// deno-lint-ignore-file no-undef
|
|
/* eslint-disable */
|
|
const fs = require("fs");
|
|
const util = require("util");
|
|
const path = require("path");
|
|
|
|
module.exports = {
|
|
readFileSync: fs.readFileSync,
|
|
isNull: util.isNull,
|
|
extname: path.extname,
|
|
};
|