From 85ab2f857f36174721ddc4d77af618840e4f8de9 Mon Sep 17 00:00:00 2001 From: Livia Medeiros Date: Thu, 15 Sep 2022 02:16:01 +0900 Subject: [PATCH] fs: remove unused option in `fs.fstatSync()` PR-URL: https://github.com/nodejs/node/pull/44613 Reviewed-By: Zeyu "Alex" Yang Reviewed-By: Daeyeon Jeong Reviewed-By: theanarkh --- lib/fs.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/fs.js b/lib/fs.js index c46e23061cbecd..42a37838e9ee6d 100644 --- a/lib/fs.js +++ b/lib/fs.js @@ -1537,11 +1537,10 @@ function hasNoEntryError(ctx) { * @param {number} fd * @param {{ * bigint?: boolean; - * throwIfNoEntry?: boolean; * }} [options] * @returns {Stats} */ -function fstatSync(fd, options = { bigint: false, throwIfNoEntry: true }) { +function fstatSync(fd, options = { bigint: false }) { fd = getValidatedFd(fd); const ctx = { fd }; const stats = binding.fstat(fd, options.bigint, undefined, ctx);