(file)
| 189 | } |
| 190 | |
| 191 | function readText(file) { |
| 192 | const target = path.join(ROOT, file); |
| 193 | return fs.existsSync(target) ? fs.readFileSync(target, "utf8") : ""; |
| 194 | } |
| 195 | |
| 196 | function writeText(file, content) { |
| 197 | const target = path.join(ROOT, file); |
no outgoing calls
no test coverage detected