1
0
Fork 0
firefox/remote/test/puppeteer/tools/cp.ts
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

12 lines
209 B
TypeScript

/**
* @license
* Copyright 2023 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import fs from 'fs';
/**
* Copies single file in argv[2] to argv[3]
*/
fs.cpSync(process.argv[2], process.argv[3]);