aboutsummaryrefslogtreecommitdiff
path: root/bench/snippets/copy.bun.js
diff options
context:
space:
mode:
Diffstat (limited to 'bench/snippets/copy.bun.js')
-rw-r--r--bench/snippets/copy.bun.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/bench/snippets/copy.bun.js b/bench/snippets/copy.bun.js
deleted file mode 100644
index 20269212a..000000000
--- a/bench/snippets/copy.bun.js
+++ /dev/null
@@ -1,4 +0,0 @@
-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));