pixsy/node_modules/clean-css/lib/properties/remove-unused.js

11 lines
236 B
JavaScript
Raw Normal View History

2017-12-22 17:22:08 +00:00
function removeUnused(properties) {
for (var i = properties.length - 1; i >= 0; i--) {
var property = properties[i];
if (property.unused)
property.all.splice(property.position, 1);
}
}
module.exports = removeUnused;