CoolFace
Apppublic

Krish30/Result-Analyzer

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
script.js19 linesDownload Raw Back to root
1function analyzeResult(resultType) {2    let url;3    switch(resultType) {4        case 'engg':5            url = 'https://huggingface.co/spaces/ommane/engg-pdf-to-excel';6            break;7        case 'hsc':8            url = 'https://hsc-pdf-to-excel.streamlit.app/';9            break;10        case 'diploma':11            url = 'https://diploma-pdf-to-excel.streamlit.app/';12            break;13        default:14            alert('Unknown result type');15            return;16    }17    window.open(url, '_blank');18}19