8000 benchmark : changed `fstat` to `fstatSync` by Narasimha1997 · Pull Request #36206 · nodejs/node · GitHub
[go: up one dir, main page]

Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
F 8000 ailed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion benchmark/fs/bench-statSync.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ function main({ n, statSyncType }) {
}
bench.end(n);

if (statSyncType === 'fstat')
if (statSyncType === 'fstatSync')
fs.closeSync(arg);
}
0