Fix set usage

Fix #18.
This commit is contained in:
Mathias Bynens
2018-09-18 11:36:28 +02:00
committed by GitHub
parent 002f4e2f2a
commit abf5a2cf23

View File

@ -20,7 +20,9 @@ module.exports = function(collection) {
return true;
});
tagSet.add(...tags);
for (const tag of tags) {
set.add(tag);
}
}
});