Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/develar/temp-file
https://github.com/develar/temp-file
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/develar/temp-file
- Owner: develar
- Created: 2017-08-11T07:59:38.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-05-11T06:30:46.000Z (over 3 years ago)
- Last Synced: 2024-10-14T22:19:43.651Z (22 days ago)
- Language: TypeScript
- Size: 66.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## temp-file
```typescript
export function getTempName(prefix?: string | null | undefined): string;export class TmpDir {
getTempDir(suffix?: string): Promise;
createTempDir(suffix?: string): Promise;
getTempFile(suffix: string, isDir?: boolean, disposer?: ((file: string) => Promise) | null): Promise;
cleanupSync(): void;
cleanup(): Promise;
}
```