(applicants)
| 73 | } |
| 74 | |
| 75 | export async function setApplicants(applicants) { |
| 76 | /* |
| 77 | * Set the list of applicants to the local storage (i.e. localforage.getItem('applicants')) |
| 78 | * @param applicants [Array]: list of applicants |
| 79 | */ |
| 80 | if (!applicants) { |
| 81 | return; |
| 82 | } |
| 83 | await writeCacheValue("applicants", applicants); |
| 84 | } |
| 85 | |
| 86 | export async function setApplicant(applicant) { |
| 87 | /* |
no test coverage detected