Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

remove-unused.js 244B

1234567891011
  1. function removeUnused(properties) {
  2. for (var i = properties.length - 1; i >= 0; i--) {
  3. var property = properties[i];
  4. if (property.unused) {
  5. property.all.splice(property.position, 1);
  6. }
  7. }
  8. }
  9. module.exports = removeUnused;