(filePath: string, contents: unknown)
| 86 | } |
| 87 | |
| 88 | export async function writeJsonFile(filePath: string, contents: unknown) { |
| 89 | await writeStringFile(filePath, JSON.stringify(contents, null, '\t') + '\n') |
| 90 | } |
no test coverage detected
searching dependent graphs…