1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/js/ops/fs/make_temp.ts

29 lines
770 B
TypeScript
Raw Normal View History

2020-02-18 14:45:59 -05:00
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { sendSync, sendAsync } from "../dispatch_json.ts";
2020-02-18 14:45:59 -05:00
export interface MakeTempOptions {
dir?: string;
prefix?: string;
suffix?: string;
}
export function makeTempDirSync(options: MakeTempOptions = {}): string {
2020-02-25 09:14:27 -05:00
return sendSync("op_make_temp_dir", options);
2020-02-18 14:45:59 -05:00
}
export async function makeTempDir(
options: MakeTempOptions = {}
): Promise<string> {
2020-02-25 09:14:27 -05:00
return await sendAsync("op_make_temp_dir", options);
2020-02-18 14:45:59 -05:00
}
export function makeTempFileSync(options: MakeTempOptions = {}): string {
2020-02-25 09:14:27 -05:00
return sendSync("op_make_temp_file", options);
2020-02-18 14:45:59 -05:00
}
export async function makeTempFile(
options: MakeTempOptions = {}
): Promise<string> {
2020-02-25 09:14:27 -05:00
return await sendAsync("op_make_temp_file", options);
2020-02-18 14:45:59 -05:00
}