From 522cbe8bbe753e5047ea6dec33bb06098715b6f6 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Wed, 25 Dec 2019 21:36:33 -0500 Subject: [PATCH] fs: use consistent defaults in sync stat functions This commit updates the default options used by statSync(), lstatSync(), and fstatSync() to be identical to the defaults used by the callback- and Promise-based versions. --- lib/fs.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/fs.js b/lib/fs.js index 857ca91c7ef252..d972c1465b910f 100644 --- a/lib/fs.js +++ b/lib/fs.js @@ -922,7 +922,7 @@ function stat(path, options = { bigint: false }, callback) { binding.stat(pathModule.toNamespacedPath(path), options.bigint, req); } -function fstatSync(fd, options = {}) { +function fstatSync(fd, options = { bigint: false }) { validateInt32(fd, 'fd', 0); const ctx = { fd }; const stats = binding.fstat(fd, options.bigint, undefined, ctx); @@ -930,7 +930,7 @@ function fstatSync(fd, options = {}) { return getStatsFromBinding(stats); } -function lstatSync(path, options = {}) { +function lstatSync(path, options = { bigint: false }) { path = getValidatedPath(path); const ctx = { path }; const stats = binding.lstat(pathModule.toNamespacedPath(path), @@ -939,7 +939,7 @@ function lstatSync(path, options = {}) { return getStatsFromBinding(stats); } -function statSync(path, options = {}) { +function statSync(path, options = { bigint: false }) { path = getValidatedPath(path); const ctx = { path }; const stats = binding.stat(pathModule.toNamespacedPath(path),