From ff659faeb8858a9fba70027ccfb1a0251fd64e1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20LUDWIG?= Date: Sun, 26 May 2024 23:47:03 +0200 Subject: [PATCH] fs: mark recursive cp methods as stable PR-URL: https://github.com/nodejs/node/pull/53127 Fixes: https://github.com/nodejs/node/issues/44598 Reviewed-By: Antoine du Hamel Reviewed-By: Luigi Pinca Reviewed-By: James M Snell Reviewed-By: Mohammed Keyvanzadeh --- doc/api/fs.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/doc/api/fs.md b/doc/api/fs.md index b485556a326fe3..e89f934f281fee 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -1021,6 +1021,9 @@ try { -> Stability: 1 - Experimental - * `src` {string|URL} source path to copy. * `dest` {string|URL} destination path to copy to. * `options` {Object} @@ -2428,6 +2429,9 @@ copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL, callback); -> Stability: 1 - Experimental - * `src` {string|URL} source path to copy. * `dest` {string|URL} destination path to copy to. * `options` {Object} @@ -5466,6 +5468,9 @@ copyFileSync('source.txt', 'destination.txt', constants.COPYFILE_EXCL); -> Stability: 1 - Experimental - * `src` {string|URL} source path to copy. * `dest` {string|URL} destination path to copy to. * `options` {Object}