summaryrefslogtreecommitdiff
path: root/std/node/_fs/_fs_copy.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/node/_fs/_fs_copy.ts')
-rw-r--r--std/node/_fs/_fs_copy.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/node/_fs/_fs_copy.ts b/std/node/_fs/_fs_copy.ts
index 72f43d18f..ba530a85c 100644
--- a/std/node/_fs/_fs_copy.ts
+++ b/std/node/_fs/_fs_copy.ts
@@ -6,7 +6,7 @@ import { fromFileUrl } from "../path.ts";
export function copyFile(
source: string | URL,
destination: string,
- callback: CallbackWithError
+ callback: CallbackWithError,
): void {
source = source instanceof URL ? fromFileUrl(source) : source;