mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 21:59:12 +08:00
11 lines
204 B
JavaScript
Executable File
11 lines
204 B
JavaScript
Executable File
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;
|