(applicantId)
| 48 | } |
| 49 | |
| 50 | export async function deleteApplicantIDByDisplayName(applicantId) { |
| 51 | /* |
| 52 | * Remove the applicant from the local storage. |
| 53 | * @param applicantId [String]: applicantId |
| 54 | */ |
| 55 | const applicants = await getApplicantIDByDisplayName(true); |
| 56 | await setApplicantIDByDisplayName(applicants.filter(p => p !== applicantId)); |
| 57 | } |
| 58 | |
| 59 | export async function getApplicant(applicantId, isRefresh = false, options = {}) { |
| 60 | /* |
no test coverage detected