diff options
Diffstat (limited to 'cli/js/ops/fs/realpath.ts')
-rw-r--r-- | cli/js/ops/fs/realpath.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/ops/fs/realpath.ts b/cli/js/ops/fs/realpath.ts index 625e6702d..e68e32bf0 100644 --- a/cli/js/ops/fs/realpath.ts +++ b/cli/js/ops/fs/realpath.ts @@ -6,5 +6,5 @@ export function realpathSync(path: string): string { } export async function realpath(path: string): Promise<string> { - return await sendAsync("op_realpath", { path }); + return sendAsync("op_realpath", { path }); } |