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.

11 lines
244 B

4 years ago
  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;