mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 22:09:31 +08:00
14 lines
382 B
Text
14 lines
382 B
Text
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();
|
|
}
|
|
}
|
|
};
|