mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-27 18:33:07 +02:00
24 lines
518 B
TypeScript
24 lines
518 B
TypeScript
import * as tmp from 'tmp';
|
|
|
|
export function createTemp(): Promise<[string, () => void]> {
|
|
return new Promise<[string, () => void]>((res, rej) => {
|
|
tmp.file((e, path, fd, cleanup) => {
|
|
if (e) return rej(e);
|
|
res([path, cleanup]);
|
|
});
|
|
});
|
|
}
|
|
|
|
export function createTempDir(): Promise<[string, () => void]> {
|
|
return new Promise<[string, () => void]>((res, rej) => {
|
|
tmp.dir(
|
|
{
|
|
unsafeCleanup: true,
|
|
},
|
|
(e, path, cleanup) => {
|
|
if (e) return rej(e);
|
|
res([path, cleanup]);
|
|
}
|
|
);
|
|
});
|
|
}
|