(srcPath, destPath)
| 96 | }; |
| 97 | |
| 98 | export const copySingleFileSync = (srcPath, destPath) => { |
| 99 | checkDestDir(destPath); |
| 100 | |
| 101 | fs.copyFileSync(srcPath, destPath); |
| 102 | }; |
| 103 | |
| 104 | export const copyFileWithCustomContentSync = (srcPath, destPath, handler) => { |
| 105 | const srcContent = fs.readFileSync(srcPath).toString(); |
no test coverage detected