1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-13 17:39:18 -05:00
denoland-deno/cli/js/ops/fs/make_temp.ts

29 lines
758 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> {
return 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> {
return sendAsync("op_make_temp_file", options);
2020-02-18 14:45:59 -05:00
}