(programIds, syncEpoch)
| 69 | } |
| 70 | |
| 71 | async function prefetchProgramDescriptions(programIds, syncEpoch) { |
| 72 | await prefetchInBatches(programIds, DESCRIPTION_BATCH_SIZE, syncEpoch, (batch) => ( |
| 73 | getProgramDescs(batch, false, {priority: BACKGROUND_PRIORITY}) |
| 74 | )); |
| 75 | } |
| 76 | |
| 77 | async function prefetchCoreCache() { |
| 78 | const [programs, applicants] = await Promise.all([ |
no test coverage detected