summaryrefslogtreecommitdiff
path: root/deps/node/benchmark/util/inspect-proxy.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/node/benchmark/util/inspect-proxy.js')
-rw-r--r--deps/node/benchmark/util/inspect-proxy.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/deps/node/benchmark/util/inspect-proxy.js b/deps/node/benchmark/util/inspect-proxy.js
deleted file mode 100644
index 3c82d50a..00000000
--- a/deps/node/benchmark/util/inspect-proxy.js
+++ /dev/null
@@ -1,15 +0,0 @@
-'use strict';
-
-const util = require('util');
-const common = require('../common.js');
-
-const bench = common.createBenchmark(main, { n: [2e4] });
-
-function main({ n }) {
- const proxyA = new Proxy({}, { get: () => {} });
- const proxyB = new Proxy(() => {}, {});
- bench.start();
- for (var i = 0; i < n; i += 1)
- util.inspect({ a: proxyA, b: proxyB }, { showProxy: true });
- bench.end(n);
-}