summaryrefslogtreecommitdiff
path: root/cli/js/ops/fs
diff options
context:
space:
mode:
authordubiousjim <dubiousjim@gmail.com>2020-03-14 22:57:42 -0400
committerGitHub <noreply@github.com>2020-03-14 22:57:42 -0400
commit6cc40b08652d0224111dc5e902210174b5a63cee (patch)
tree6ece1c2418e09851e51b082962894bef370c9f31 /cli/js/ops/fs
parent0df9823cba680d41b981e021a88aaf19e88b0e76 (diff)
BREAKING CHANGE FileInfo.len renamed to FileName.size (#4338)
Diffstat (limited to 'cli/js/ops/fs')
-rw-r--r--cli/js/ops/fs/stat.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/ops/fs/stat.ts b/cli/js/ops/fs/stat.ts
index 032cc97ee..20ca3e6b1 100644
--- a/cli/js/ops/fs/stat.ts
+++ b/cli/js/ops/fs/stat.ts
@@ -5,7 +5,7 @@ import { FileInfo, FileInfoImpl } from "../../file_info.ts";
export interface StatResponse {
isFile: boolean;
isSymlink: boolean;
- len: number;
+ size: number;
modified: number;
accessed: number;
created: number;