(filePath, content)
| 35 | } |
| 36 | |
| 37 | function writePrivateFile(filePath, content) { |
| 38 | fs.writeFileSync(filePath, content, { encoding: 'utf8', mode: PRIVATE_FILE_MODE }); |
| 39 | bestEffortChmod(filePath, PRIVATE_FILE_MODE); |
| 40 | } |
| 41 | |
| 42 | function sleepSync(ms) { |
| 43 | try { |
no test coverage detected