1
0
mirror of https://github.com/S2-/minifyfromhtml.git synced 2025-08-05 13:00:08 +02:00
Files
2022-08-20 18:51:33 +02:00

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;