puppeteer/tools/cp.ts

13 lines
209 B
TypeScript
Raw Normal View History

2023-04-14 08:51:35 +00:00
/**
2024-01-03 10:11:33 +00:00
* @license
* Copyright 2023 Google Inc.
* SPDX-License-Identifier: Apache-2.0
2023-04-14 08:51:35 +00:00
*/
import fs from 'fs';
/**
* Copies single file in argv[2] to argv[3]
*/
fs.cpSync(process.argv[2], process.argv[3]);