const minisrv_service_file = true; const folder_array = session_data.favstore.getFolders(); const totalfavorites = folder_array.length; headers = `200 OK Connection: Keep-Alive Content-Type: text/html` data = ` Remove folders
 Favorites
Remove folders
` for (let i = 1; i < totalfavorites; i++) { data += `
` } if (totalfavorites === 1) data += `
` else data += `
` for (let i = 1; i < totalfavorites; i++) { data += `
` } data += `
` if (totalfavorites === 1) data += "   You cannot delete your last folder." data += `
`;