mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 12:20:04 +02:00
11 lines
198 B
JavaScript
11 lines
198 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;
|