(relativePath)
| 26 | } |
| 27 | |
| 28 | function readText(relativePath) { |
| 29 | return fs.readFileSync(path.join(root, relativePath), 'utf8'); |
| 30 | } |
| 31 | |
| 32 | function writeText(relativePath, content) { |
| 33 | fs.mkdirSync(path.dirname(path.join(root, relativePath)), { recursive: true }); |
no test coverage detected