Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

has-inherit.js 204B

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;