(data)
| 16 | |
| 17 | // Save data to the JSON file |
| 18 | function saveStickcmdData(data) { |
| 19 | fs.writeFileSync(filePath, JSON.stringify(data, null, 2)); |
| 20 | } |
| 21 | |
| 22 | // Create the default file if it doesn't exist |
| 23 | if (!fs.existsSync(filePath)) { |
no outgoing calls
no test coverage detected