diff options
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); |