mirror of
https://github.com/denoland/deno.git
synced 2025-10-02 23:24:37 +00:00
Remove doc strings from cli/js TS files (#4329)
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
This commit is contained in:
parent
3ac642c183
commit
e435c2be15
87 changed files with 0 additions and 2025 deletions
|
@ -1,26 +1,10 @@
|
|||
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
||||
import { sendSync, sendAsync } from "../dispatch_json.ts";
|
||||
|
||||
/** Synchronously copies the contents and permissions of one file to another
|
||||
* specified path, by default creating a new file if needed, else overwriting.
|
||||
* Fails if target path is a directory or is unwritable.
|
||||
*
|
||||
* Deno.copyFileSync("from.txt", "to.txt");
|
||||
*
|
||||
* Requires `allow-read` permission on fromPath.
|
||||
* Requires `allow-write` permission on toPath. */
|
||||
export function copyFileSync(fromPath: string, toPath: string): void {
|
||||
sendSync("op_copy_file", { from: fromPath, to: toPath });
|
||||
}
|
||||
|
||||
/** Copies the contents and permissions of one file to another specified path,
|
||||
* by default creating a new file if needed, else overwriting. Fails if target
|
||||
* path is a directory or is unwritable.
|
||||
*
|
||||
* await Deno.copyFile("from.txt", "to.txt");
|
||||
*
|
||||
* Requires `allow-read` permission on fromPath.
|
||||
* Requires `allow-write` permission on toPath. */
|
||||
export async function copyFile(
|
||||
fromPath: string,
|
||||
toPath: string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue