A form for determining what restaurants are celiac safe.
I get asked a lot where I can eat, and the answer to pretty much every restaurant is “probably not”.
I made this form so others can use the process I follow to determine if a restaurant is celiac safe.
I hacked this together in less than an hour, so please ask anyways.
Notes:
Algorithm:
function isCeliacSafe(resMap) {
if(resMap.DEDICATED || resMap.FiveStars){
return YES
}
if(resMap.Korean || resMap.Buffet) {
return NO
}
if(resMap.MEXICAN || resMap.PHO|| resMap.ITALY) {
return PROBABLY
}
if(resMap.PIZZA) {
return MAYBE
}
return LESSPROBABLY
}