1function hasInherit(property) { 2 for (var i = property.value.length - 1; i >= 0; i--) { 3 if (property.value[i][1] == 'inherit') 4 return true; 5 } 6 7 return false; 8} 9 10module.exports = hasInherit; 11