Merge pull request #19 from mathiasbynens/patch-2

Fix set usage
This commit is contained in:
Zach Leatherman
2018-09-18 07:00:55 -05:00
committed by GitHub

View File

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