1 |
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 |
} |