2845940c3ee8a74274bc858282ec005a924909ce77dff38d2038e4fc6960050337a2f8bb82d93489182c3b18bc5f2337c11457d54c9b63f8e39b49aafe74fb 204 B

12345678910
  1. function 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. return false;
  7. }
  8. module.exports = hasInherit;