summaryrefslogtreecommitdiff
path: root/deps/node/benchmark/fs/bench-readdir.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/node/benchmark/fs/bench-readdir.js')
-rw-r--r--deps/node/benchmark/fs/bench-readdir.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/deps/node/benchmark/fs/bench-readdir.js b/deps/node/benchmark/fs/bench-readdir.js
deleted file mode 100644
index 3731e35a..00000000
--- a/deps/node/benchmark/fs/bench-readdir.js
+++ /dev/null
@@ -1,24 +0,0 @@
-'use strict';
-
-const common = require('../common');
-const fs = require('fs');
-const path = require('path');
-
-const bench = common.createBenchmark(main, {
- n: [10],
- dir: [ 'lib', 'test/parallel'],
- withFileTypes: ['true', 'false']
-});
-
-function main({ n, dir, withFileTypes }) {
- withFileTypes = withFileTypes === 'true';
- const fullPath = path.resolve(__dirname, '../../', dir);
- bench.start();
- (function r(cntr) {
- if (cntr-- <= 0)
- return bench.end(n);
- fs.readdir(fullPath, { withFileTypes }, () => {
- r(cntr);
- });
- }(n));
-}