mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 12:20:04 +02:00
10 lines
196 B
JavaScript
10 lines
196 B
JavaScript
function hasUnset(property) {
|
|
for (var i = property.value.length - 1; i >= 0; i--) {
|
|
if (property.value[i][1] == 'unset') { return true; }
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
module.exports = hasUnset;
|