1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/std/node/_fs/_fs_copy.ts

22 lines
492 B
TypeScript
Raw Normal View History

// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { CallbackWithError } from "./_fs_common.ts";
export function copyFile(
source: string,
destination: string,
callback: CallbackWithError
): void {
Deno.copyFile(source, destination)
.then(() => callback())
.catch(callback);
}
export function copyFileSync(source: string, destination: string): void {
try {
Deno.copyFileSync(source, destination);
} catch (err) {
throw err;
}
}