From cde4dbb35132848ffece59ef9cfaccff32347124 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 14 Jul 2020 15:24:17 -0400 Subject: Use dprint for internal formatting (#6682) --- std/node/_fs/_fs_copy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'std/node/_fs/_fs_copy.ts') 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; -- cgit v1.2.3