(path: string)
| 1139 | }; |
| 1140 | |
| 1141 | const removeSqliteFileSet = (path: string): void => { |
| 1142 | for (const suffix of fileSetSuffixes) fs.rmSync(`${path}${suffix}`, { force: true }); |
| 1143 | }; |
| 1144 | |
| 1145 | const backupPathFor = (sqlitePath: string, nonce: string): string => |
| 1146 | `${sqlitePath}.v1-v2-${Date.now()}-${nonce}`; |