source:
imaps-frontend/node_modules/clean-css/lib/optimizer/level-2/properties/has-inherit.js@
79a0317
Last change on this file since 79a0317 was 79a0317, checked in by , 4 days ago | |
---|---|
|
|
File size: 202 bytes |
Line | |
---|---|
1 | function hasInherit(property) { |
2 | for (var i = property.value.length - 1; i >= 0; i--) { |
3 | if (property.value[i][1] == 'inherit') { return true; } |
4 | } |
5 | |
6 | return false; |
7 | } |
8 | |
9 | module.exports = hasInherit; |
Note:
See TracBrowser
for help on using the repository browser.