function showFlag(data) { if(data != undefined){ var flagcount = 0 for(var i = 0;i<data.length;i++){ if(data[i].show == true){ flagcount ++ } } if(flagcount <= 1){ return false }else{ return true } }else{ return false } } module.exports.showFlag = showFlag;