(filePath)
| 38 | } |
| 39 | |
| 40 | static async readFile(filePath) { |
| 41 | try { |
| 42 | return await readFile(filePath, "utf8"); |
| 43 | } catch (err) { |
| 44 | console.error(err); |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | static async writeFile(filePath, data) { |
| 49 | try { |
nothing calls this directly
no outgoing calls
no test coverage detected