(filePath, value)
| 33 | } |
| 34 | |
| 35 | function writeText(filePath, value) { |
| 36 | ensureDir(path.dirname(filePath)); |
| 37 | fs.writeFileSync(filePath, value, 'utf8'); |
| 38 | } |
| 39 | |
| 40 | function appendJsonl(filePath, value) { |
| 41 | ensureDir(path.dirname(filePath)); |
no test coverage detected