/[sudobot]/branches/7.x/src/polyfills/FileSystem.ts
ViewVC logotype

Annotation of /branches/7.x/src/polyfills/FileSystem.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (hide annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 740 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 rakinar2 577 import { readFile } from "fs/promises";
2    
3     type ReadFileContentOptions<T extends boolean> = {
4     json?: T;
5     };
6    
7     type ReadFileResult<T extends boolean, J> = T extends true ? J : string;
8    
9     export default class FileSystem {
10     static async readFileContents<J = any, T extends boolean = false>(
11     path: string,
12     { json }: ReadFileContentOptions<T> = {}
13     ): Promise<ReadFileResult<T, J>> {
14     let contents = "";
15    
16     if (process.versions.bun) {
17     contents = await Bun.file(path).text();
18     } else {
19     contents = await readFile(path, { encoding: "utf-8" });
20     }
21    
22     if (json) {
23     return JSON.parse(contents);
24     }
25    
26     return contents as ReadFileResult<T, J>;
27     }
28     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26