(data)
| 14 | |
| 15 | // Save data to JSON file |
| 16 | function saveAliveData(data) { |
| 17 | fs.writeFileSync(filePath, JSON.stringify(data, null, 2)); |
| 18 | } |
| 19 | |
| 20 | // Create default data if not exists |
| 21 | if (!fs.existsSync(filePath)) { |
no outgoing calls
no test coverage detected