tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

cp.ts (214B)


      1 /**
      2 * @license
      3 * Copyright 2023 Google Inc.
      4 * SPDX-License-Identifier: Apache-2.0
      5 */
      6 
      7 import fs from 'node:fs';
      8 
      9 /**
     10 * Copies single file in argv[2] to argv[3]
     11 */
     12 fs.cpSync(process.argv[2], process.argv[3]);