From a9e4ff2029a769737982fcf7e0b7d76d35cf35e4 Mon Sep 17 00:00:00 2001 From: evan Date: Tue, 12 Jul 2022 04:40:12 -0400 Subject: cleanup benchmarks folder (#587) * cleanup benchmarks * run prettier --- bench/copyfile/bun.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 bench/copyfile/bun.js (limited to 'bench/copyfile/bun.js') diff --git a/bench/copyfile/bun.js b/bench/copyfile/bun.js new file mode 100644 index 000000000..7e5e2c9b1 --- /dev/null +++ b/bench/copyfile/bun.js @@ -0,0 +1,5 @@ +import path from "path"; +const input = path.resolve(process.argv[process.argv.length - 2]); +const output = path.resolve(process.argv[process.argv.length - 1]); + +await Bun.write(Bun.file(output), Bun.file(input)); -- cgit v1.2.3