a zip code crypto-currency system good for red ONLY

has-inherit.js 204B

1234567891011
  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;