1
0
mirror of https://github.com/svg/svgo.git synced 2025-07-29 20:21:14 +03:00

Fix and update cleanupListOfValues tests

This commit is contained in:
GreLI
2018-09-16 20:58:12 +03:00
parent e7bdce66ed
commit ed75e56bde
2 changed files with 9 additions and 1 deletions

View File

@ -125,7 +125,7 @@ exports.fn = function(item, params) {
// if attribute value is "new"(only enable-background).
else if (matchNew) {
roundedListArr.push('new');
} else {
} else if (elem) {
roundedListArr.push(elem);
}