mirror of
https://github.com/cp6/my-idlers.git
synced 2024-11-17 07:52:40 +01:00
fd22b0bf58
V2 (Laravel re-make)
15 lines
382 B
JavaScript
15 lines
382 B
JavaScript
var property = require('css-tree').property;
|
|
|
|
module.exports = function cleanDeclartion(node, item, list) {
|
|
if (node.value.children && node.value.children.isEmpty()) {
|
|
list.remove(item);
|
|
return;
|
|
}
|
|
|
|
if (property(node.property).custom) {
|
|
if (/\S/.test(node.value.value)) {
|
|
node.value.value = node.value.value.trim();
|
|
}
|
|
}
|
|
};
|