()
| 23 | const STATE_ENTRIES = ["data.db", "data.db-wal", "data.db-shm", "server-control"]; |
| 24 | |
| 25 | const backupStamp = () => |
| 26 | new Date() |
| 27 | .toISOString() |
| 28 | .replace(/[-:]/g, "") |
| 29 | .replace(/\.\d+Z$/, "Z"); |
| 30 | |
| 31 | export interface ResetStateResult { |
| 32 | readonly backupDir: string; |
no test coverage detected