diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-05-23 07:59:51 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-22 21:59:51 +0000 |
commit | 6c167c64d61ecfc912dc1b68d300f02aa3677235 (patch) | |
tree | e71da79aecb5ba8c8a24486ad9c0e52e8c70f693 /ext/fs/lib.rs | |
parent | cbddf468e36aaa335d6c3da6b4da055b1afc3c18 (diff) |
feat(ext/fs): stabilize `Deno.FsFile.syncData[Sync]()` and `Deno.FsFile.sync[Sync]()` (#23733)
Closes #22230
Diffstat (limited to 'ext/fs/lib.rs')
-rw-r--r-- | ext/fs/lib.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/fs/lib.rs b/ext/fs/lib.rs index d4e79b75f..0c3b99c24 100644 --- a/ext/fs/lib.rs +++ b/ext/fs/lib.rs @@ -144,12 +144,8 @@ deno_core::extension!(deno_fs, op_fs_seek_async, op_fs_fdatasync_sync, op_fs_fdatasync_async, - op_fs_fdatasync_sync_unstable, - op_fs_fdatasync_async_unstable, op_fs_fsync_sync, op_fs_fsync_async, - op_fs_fsync_sync_unstable, - op_fs_fsync_async_unstable, op_fs_file_stat_sync, op_fs_file_stat_async, op_fs_flock_sync, |