gitextract_nbr14g_8/ ├── .devcontainer/ │ └── devcontainer.json ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── benchmark-comparison.yml │ ├── commit-message-validation.yml │ ├── release.yml │ ├── runner_warmer.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── .release-please-manifest.json ├── BENCHMARK_COMPARISSON.md ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── assets/ │ └── README.md ├── bench-node-0.14.0.tgz ├── biome.json ├── doc/ │ ├── Inconclusive.md │ └── Plugins.md ├── examples/ │ ├── .gitignore │ ├── benchmark-comparison/ │ │ ├── README.md │ │ └── comparison.js │ ├── chart-report/ │ │ └── node.js │ ├── create-uint32array/ │ │ ├── node.js │ │ └── node.js.log │ ├── crypto-verify/ │ │ ├── node.js │ │ ├── node.js.log │ │ ├── private-key.pem │ │ └── public-key.pem │ ├── csv-report/ │ │ └── node.js │ ├── dce-detection/ │ │ ├── example.js │ │ ├── with-dce-disabled.js │ │ └── without-never-optimize.js │ ├── deleting-properties/ │ │ ├── node.js │ │ └── node.js.log │ ├── empty/ │ │ ├── node.js │ │ └── node.js.log │ ├── fs-read-async/ │ │ ├── node.js │ │ ├── node.js.log │ │ ├── node.managed.js │ │ ├── node.managed.js.log │ │ └── sample-file.txt │ ├── fs-read-sync/ │ │ ├── node.js │ │ ├── node.js.log │ │ └── sample-file.txt │ ├── html-report/ │ │ ├── node.js │ │ └── result.html │ ├── json-report/ │ │ └── node.js │ ├── plugins/ │ │ ├── all.js │ │ ├── all.js.log │ │ ├── memory.js │ │ ├── v8-get-opt-status.js │ │ ├── v8-get-opt-status.js.log │ │ ├── v8-never-optimize.js │ │ ├── v8-never-optimize.js.log │ │ ├── v8-optimize-next-call.js │ │ └── v8-optimize-next-call.js.log │ ├── pretty-report/ │ │ └── node.js │ ├── run.sh │ ├── statistical-significance/ │ │ ├── README.md │ │ └── node.js │ ├── string-replace/ │ │ ├── node.js │ │ └── node.js.log │ ├── string-searching/ │ │ ├── node.js │ │ └── node.js.log │ ├── time-mode.js │ └── worker-threads/ │ └── node.js ├── index.d.ts ├── lib/ │ ├── clock.js │ ├── histogram.js │ ├── index.js │ ├── lifecycle.js │ ├── plugins/ │ │ ├── dce-detection.js │ │ ├── memory.js │ │ ├── v8-never-opt.js │ │ ├── v8-opt.js │ │ └── v8-print-status.js │ ├── plugins.js │ ├── report.js │ ├── reporter/ │ │ ├── chart.js │ │ ├── csv.js │ │ ├── html.js │ │ ├── json.js │ │ ├── pretty.js │ │ ├── template.html │ │ └── text.js │ ├── utils/ │ │ ├── analyze.js │ │ ├── styleText.js │ │ └── ttest.js │ ├── validators.js │ └── worker-runner.js ├── package.json ├── release-please-config.json ├── test/ │ ├── async.js │ ├── basic.js │ ├── env.js │ ├── fixtures/ │ │ ├── bench.js │ │ ├── copy.js │ │ └── opt-managed.js │ ├── managed.js │ ├── plugin-api-doc.js │ ├── plugins.js │ ├── reporter.js │ ├── time-mode.js │ ├── ttest.js │ └── worker.js └── types/ └── types.test-d.ts