(path, index)
| 276 | } |
| 277 | |
| 278 | function writeIndexFile(path, index) { |
| 279 | index.sort((a, b) => a.path.localeCompare(b.path)); |
| 280 | fs.writeFileSync(path, JSON.stringify(index, null, 2)); |
| 281 | } |
| 282 | |
| 283 | class MutateDbWriter { |
| 284 | constructor(outputDir) { |
no test coverage detected