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

25 lines
738 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
}
2020-03-20 09:38:34 -04:00
export 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
}
2020-03-20 09:38:34 -04:00
export function makeTempFile(options: MakeTempOptions = {}): Promise<string> {
return sendAsync("op_make_temp_file", options);
2020-02-18 14:45:59 -05:00
}