function checkForIndexFile()

in public/js/main.js [35:42]


function checkForIndexFile(filePaths) {
    var hasIndexFile = filePaths.some(function(filePath) { 
        return filePath.indexOf('index.html') !== -1;
    });
    if (!hasIndexFile) {
        showMsg(messages.missingIndexFile);
    }
}