(filePath: string)
| 38 | } |
| 39 | |
| 40 | function resetToOriginalState(filePath: string) { |
| 41 | const path = require('node:path'); |
| 42 | const fse = require('fs-extra'); |
| 43 | const finalFileName = filePath.replace('.original', ''); |
| 44 | fse.removeSync(finalFileName); |
| 45 | fse.moveSync(filePath, finalFileName); |
| 46 | } |
| 47 | |
| 48 | function build() { |
| 49 |
nothing calls this directly
no outgoing calls
no test coverage detected