mirror of
https://github.com/denoland/deno.git
synced 2025-08-03 10:33:54 +00:00
Implemented readDirSync, readDir
This commit is contained in:
parent
4c0517c339
commit
ea87034e26
9 changed files with 294 additions and 93 deletions
|
@ -9,9 +9,10 @@ export { makeTempDirSync, makeTempDir } from "./make_temp_dir";
|
|||
export { removeSync, remove, removeAllSync, removeAll } from "./remove";
|
||||
export { renameSync, rename } from "./rename";
|
||||
export { readFileSync, readFile } from "./read_file";
|
||||
export { readDirSync, readDir } from "./read_dir";
|
||||
export { copyFileSync, copyFile } from "./copy_file";
|
||||
export { readlinkSync, readlink } from "./read_link";
|
||||
export { FileInfo, statSync, lstatSync, stat, lstat } from "./stat";
|
||||
export { statSync, lstatSync, stat, lstat } from "./stat";
|
||||
export { symlinkSync, symlink } from "./symlink";
|
||||
export { writeFileSync, writeFile } from "./write_file";
|
||||
export { ErrorKind, DenoError } from "./errors";
|
||||
|
@ -19,4 +20,5 @@ export { libdeno } from "./libdeno";
|
|||
export { platform } from "./platform";
|
||||
export { trace } from "./trace";
|
||||
export { truncateSync, truncate } from "./truncate";
|
||||
export { FileInfo } from "./fileinfo";
|
||||
export const args: string[] = [];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue