mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
21 lines
630 B
TypeScript
21 lines
630 B
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { CallbackWithError } from "./_fs_common.ts";
|
|
import { fromFileUrl } from "../path.ts";
|
|
|
|
export function copyFile(
|
|
source: string | URL,
|
|
destination: string,
|
|
callback: CallbackWithError
|
|
): void {
|
|
source = source instanceof URL ? fromFileUrl(source) : source;
|
|
|
|
Deno.copyFile(source, destination)
|
|
.then(() => callback())
|
|
.catch(callback);
|
|
}
|
|
|
|
export function copyFileSync(source: string | URL, destination: string): void {
|
|
source = source instanceof URL ? fromFileUrl(source) : source;
|
|
Deno.copyFileSync(source, destination);
|
|
}
|