IB-AR-Neural-Style-Transfers / artficial.api / node_modules / clean-css / lib / properties / has-inherit.js
has-inherit.js
Raw
function hasInherit(property) {
  for (var i = property.value.length - 1; i >= 0; i--) {
    if (property.value[i][0] == 'inherit')
      return true;
  }

  return false;
}

module.exports = hasInherit;