diff options
Diffstat (limited to 'cli/js/ops/fs/make_temp.ts')
-rw-r--r-- | cli/js/ops/fs/make_temp.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/ops/fs/make_temp.ts b/cli/js/ops/fs/make_temp.ts index cc8a76435..aeab9afc7 100644 --- a/cli/js/ops/fs/make_temp.ts +++ b/cli/js/ops/fs/make_temp.ts @@ -14,7 +14,7 @@ export function makeTempDirSync(options: MakeTempOptions = {}): string { export async function makeTempDir( options: MakeTempOptions = {} ): Promise<string> { - return await sendAsync("op_make_temp_dir", options); + return sendAsync("op_make_temp_dir", options); } export function makeTempFileSync(options: MakeTempOptions = {}): string { @@ -24,5 +24,5 @@ export function makeTempFileSync(options: MakeTempOptions = {}): string { export async function makeTempFile( options: MakeTempOptions = {} ): Promise<string> { - return await sendAsync("op_make_temp_file", options); + return sendAsync("op_make_temp_file", options); } |