diff options
Diffstat (limited to 'bench/module-loader/create.js')
-rw-r--r-- | bench/module-loader/create.js | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/bench/module-loader/create.js b/bench/module-loader/create.js index 8c20307af..a26e2a61e 100644 --- a/bench/module-loader/create.js +++ b/bench/module-loader/create.js @@ -47,11 +47,7 @@ fs.writeFileSync( output + `/file${count}.mjs`, ` export const THE_END = true; - ${ - saveStack - ? `globalThis.evaluationOrder.push("${output}/file${count}.mjs");` - : "" - } + ${saveStack ? `globalThis.evaluationOrder.push("${output}/file${count}.mjs");` : ""} `, "utf8", ); @@ -60,11 +56,7 @@ fs.writeFileSync( output + `/file${count}.js`, ` module.exports.THE_END = true; - ${ - saveStack - ? `globalThis.evaluationOrder.push("${output}/file${count}.js");` - : "" - } + ${saveStack ? `globalThis.evaluationOrder.push("${output}/file${count}.js");` : ""} `, "utf8", ); |