(path: string)
| 1093 | }; |
| 1094 | |
| 1095 | const fsyncSqliteFileSet = (path: string): void => { |
| 1096 | for (const suffix of fileSetSuffixes) fsyncFileIfExists(`${path}${suffix}`); |
| 1097 | }; |
| 1098 | |
| 1099 | const moveSqliteFileSet = async (source: string, target: string): Promise<void> => { |
| 1100 | await renameWithRetry(source, target); |
no test coverage detected