aboutsummaryrefslogtreecommitdiff
path: root/bench/copyfile/node.mjs
blob: 6769eff0c9a890b36cfa9de7c9e8375488e7e521 (plain) (blame)
1
2
3
4
5
import { copyFileSync } from "node:fs";

const arg = process.argv.slice(2);

copyFileSync(arg[0], arg[1]);