mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
13 lines
209 B
TypeScript
13 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]);
|