(path)
| 109 | } |
| 110 | |
| 111 | async function someRead(path) |
| 112 | { |
| 113 | const readingProgress = relative.get('readingProgress'); |
| 114 | const paths = await findReadingProgressPaths(path, false); |
| 115 | |
| 116 | for(const key of paths) |
| 117 | { |
| 118 | const progress = readingProgress[key]; |
| 119 | |
| 120 | if(progress && progress.page && fileManager.simpleExists(key, true)) |
| 121 | return true; |
| 122 | } |
| 123 | |
| 124 | return false; |
| 125 | } |
| 126 | |
| 127 | async function readPages(path) |
| 128 | { |
no test coverage detected