diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-02-26 08:13:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-26 01:13:48 +0100 |
commit | 2ac7798a20f34d9e774299c6e538aed96dfb7257 (patch) | |
tree | aa1725d7fdb42f980f14dd8ff35d329c58a2b570 /runtime/ops/fs.rs | |
parent | e516e4d1d5bd12182a3f541e1e6e000639dbc5da (diff) |
feat(runtime): stabilize Deno.symlink and Deno.symlinkSync (#9226)
Diffstat (limited to 'runtime/ops/fs.rs')
-rw-r--r-- | runtime/ops/fs.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/runtime/ops/fs.rs b/runtime/ops/fs.rs index 5f5425dfa..8560d9f3e 100644 --- a/runtime/ops/fs.rs +++ b/runtime/ops/fs.rs @@ -1203,7 +1203,6 @@ fn op_symlink_sync( args: Value, _zero_copy: &mut [ZeroCopyBuf], ) -> Result<Value, AnyError> { - super::check_unstable(state, "Deno.symlink"); let args: SymlinkArgs = serde_json::from_value(args)?; let oldpath = PathBuf::from(&args.oldpath); let newpath = PathBuf::from(&args.newpath); @@ -1254,8 +1253,6 @@ async fn op_symlink_async( args: Value, _zero_copy: BufVec, ) -> Result<Value, AnyError> { - super::check_unstable2(&state, "Deno.symlink"); - let args: SymlinkArgs = serde_json::from_value(args)?; let oldpath = PathBuf::from(&args.oldpath); let newpath = PathBuf::from(&args.newpath); |