readFileSync() and chmodSync() are now imported in a single import statement.

This commit is contained in:
Vlad Lasky
2021-05-27 09:42:46 +10:00
parent 95b089b653
commit fce87647e7

View File

@@ -1,6 +1,8 @@
import assert from "assert";
import { readFileSync } from "fs";
import { chmodSync } from "fs";
import {
readFileSync,
chmodSync
} from "fs";
import { createServer } from "http";
import {
join as pathJoin,