diff options
Diffstat (limited to 'bench/scanner/scan-imports-only.js')
-rw-r--r-- | bench/scanner/scan-imports-only.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bench/scanner/scan-imports-only.js b/bench/scanner/scan-imports-only.js index 53222d57c..3cd55fe2c 100644 --- a/bench/scanner/scan-imports-only.js +++ b/bench/scanner/scan-imports-only.js @@ -8,8 +8,6 @@ const transpiler = new Bun.Transpiler({ console.time("Get exports"); const ITERATIONS = parseInt(process.env.ITERATIONS || "1") || 1; for (let i = 0; i < ITERATIONS; i++) { - const imports = transpiler.scanImports( - readFileSync("remix-route.ts", "utf8") - ); + const imports = transpiler.scanImports(readFileSync("remix-route.ts", "utf8")); } console.timeEnd("Get exports"); |