(path, cache = true, cacheOnly = false)
| 99 | } |
| 100 | |
| 101 | async function simpleGet(path, cache = true, cacheOnly = false) |
| 102 | { |
| 103 | const _someRead = await someRead(path); |
| 104 | |
| 105 | return { |
| 106 | completed: !_someRead ? false : await getCompleted(path), |
| 107 | someRead: _someRead, |
| 108 | }; |
| 109 | } |
| 110 | |
| 111 | async function someRead(path) |
| 112 | { |
nothing calls this directly
no test coverage detected