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 e68e32bf0..e8a904079 100644 --- a/cli/js/ops/fs/realpath.ts +++ b/cli/js/ops/fs/realpath.ts @@ -5,6 +5,6 @@ export function realpathSync(path: string): string { return sendSync("op_realpath", { path }); } -export async function realpath(path: string): Promise<string> { +export function realpath(path: string): Promise<string> { return sendAsync("op_realpath", { path }); } |