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_chmod.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'std/node/_fs/_fs_chmod.ts') diff --git a/std/node/_fs/_fs_chmod.ts b/std/node/_fs/_fs_chmod.ts index 844afd21d..9a8277b45 100644 --- a/std/node/_fs/_fs_chmod.ts +++ b/std/node/_fs/_fs_chmod.ts @@ -12,7 +12,7 @@ const allowedModes = /^[0-7]{3}/; export function chmod( path: string | URL, mode: string | number, - callback: CallbackWithError + callback: CallbackWithError, ): void { path = path instanceof URL ? fromFileUrl(path) : path; -- cgit v1.2.3