(programs)
| 206 | } |
| 207 | |
| 208 | export async function setPrograms(programs) { |
| 209 | /* |
| 210 | * Set the list of programs (without description) to the local storage (i.e. localforage.getItem('programs')) |
| 211 | * @param programs [Array]: list of programs (without description) |
| 212 | */ |
| 213 | if (!programs) { |
| 214 | return; |
| 215 | } |
| 216 | await writeCacheValue("programs", programs); |
| 217 | } |
| 218 | |
| 219 | export async function setProgram(program) { |
| 220 | /* |
no test coverage detected