diff options
Diffstat (limited to 'std/node/_fs/_fs_chown.ts')
-rw-r--r-- | std/node/_fs/_fs_chown.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/node/_fs/_fs_chown.ts b/std/node/_fs/_fs_chown.ts index 56068ef73..ae3af0121 100644 --- a/std/node/_fs/_fs_chown.ts +++ b/std/node/_fs/_fs_chown.ts @@ -11,7 +11,7 @@ export function chown( path: string | URL, uid: number, gid: number, - callback: CallbackWithError + callback: CallbackWithError, ): void { path = path instanceof URL ? fromFileUrl(path) : path; |