diff options
author | dubiousjim <dubiousjim@gmail.com> | 2020-03-31 13:46:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-31 13:46:25 -0400 |
commit | d4d0b5d90c8abc5867a389129ee185b2c1cf0f0f (patch) | |
tree | d2cd0f05cfc2e8e9b2c5d897d8dc2402bc53daea /cli/js/ops/fs/stat.ts | |
parent | a86b07f2df20b6436291d77d9636061ede0b6c8e (diff) |
Properly track isFile, isSymlink, isDirectory (#4541)
* Properly track isFile, isSymlink, isDirectory
These don't exhaust all the possibilities, so none of them should be
defined as "neither of the others".
* empty
Diffstat (limited to 'cli/js/ops/fs/stat.ts')
-rw-r--r-- | cli/js/ops/fs/stat.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/js/ops/fs/stat.ts b/cli/js/ops/fs/stat.ts index f455484c1..5d8860939 100644 --- a/cli/js/ops/fs/stat.ts +++ b/cli/js/ops/fs/stat.ts @@ -4,6 +4,7 @@ import { FileInfo, FileInfoImpl } from "../../file_info.ts"; export interface StatResponse { isFile: boolean; + isDirectory: boolean; isSymlink: boolean; size: number; modified: number; |