From 2ac7798a20f34d9e774299c6e538aed96dfb7257 Mon Sep 17 00:00:00 2001 From: Casper Beyer Date: Fri, 26 Feb 2021 08:13:48 +0800 Subject: feat(runtime): stabilize Deno.symlink and Deno.symlinkSync (#9226) --- runtime/ops/fs.rs | 3 --- 1 file changed, 3 deletions(-) (limited to 'runtime/ops') 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 { - 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 { - 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); -- cgit v1.2.3