web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
382 B

  1. var property = require('css-tree').property;
  2. module.exports = function cleanDeclartion(node, item, list) {
  3. if (node.value.children && node.value.children.isEmpty()) {
  4. list.remove(item);
  5. return;
  6. }
  7. if (property(node.property).custom) {
  8. if (/\S/.test(node.value.value)) {
  9. node.value.value = node.value.value.trim();
  10. }
  11. }
  12. };