()
| 119 | }; |
| 120 | |
| 121 | async function getDB() { |
| 122 | const db = await JSONFilePreset<AcronDB>(filePath, { seq: "0", tasks: [] }); |
| 123 | return db; |
| 124 | } |
| 125 | |
| 126 | // 转换辅助:在使用时将字符串转 number,写入时存字符串 |
| 127 | function toInt(value: any): number | undefined { |
no outgoing calls
no test coverage detected