diff options
| author | Casper Beyer <caspervonb@pm.me> | 2021-04-12 19:33:05 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-12 13:33:05 +0200 |
| commit | da9219341fe8bcf080d3ebdd03d35cec1268875e (patch) | |
| tree | 75f21430ff33cdcbe071caaa7b18e2063cb75538 /runtime/js/30_fs.js | |
| parent | 5c2a8cdbdcc3ae74a4c2d8fb704a331986f49a95 (diff) | |
feat(runtime): add stat and statSync methods to Deno.File (#10107)
Diffstat (limited to 'runtime/js/30_fs.js')
| -rw-r--r-- | runtime/js/30_fs.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/js/30_fs.js b/runtime/js/30_fs.js index e79247640..af2aebd3e 100644 --- a/runtime/js/30_fs.js +++ b/runtime/js/30_fs.js @@ -390,8 +390,6 @@ removeSync, renameSync, rename, - fstatSync, - fstat, lstat, lstatSync, stat, @@ -403,6 +401,8 @@ umask, link, linkSync, + fstatSync, + fstat, futime, futimeSync, utime, |
